summaryrefslogtreecommitdiffstats
path: root/adb/adb_client.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-05-05 13:10:43 -0700
committerElliott Hughes <enh@google.com>2015-05-05 13:10:43 -0700
commit3bd73c12c07dcefc965abeef535ac53c4754d682 (patch)
tree2cc65f5d6e779092e84892dfa4aabab03b96f262 /adb/adb_client.h
parent9337d0ac86d2baa33c2c64b0f50f84982d914e43 (diff)
downloadsystem_core-3bd73c12c07dcefc965abeef535ac53c4754d682.tar.gz
system_core-3bd73c12c07dcefc965abeef535ac53c4754d682.tar.bz2
system_core-3bd73c12c07dcefc965abeef535ac53c4754d682.zip
Give enum types CamelCase names for clarity.
Change-Id: I1c89f1cc155ee839f372fb14d972a288183b8bcd
Diffstat (limited to 'adb/adb_client.h')
-rw-r--r--adb/adb_client.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/adb/adb_client.h b/adb/adb_client.h
index 96416f52f..de5c2db73 100644
--- a/adb/adb_client.h
+++ b/adb/adb_client.h
@@ -21,9 +21,8 @@ int adb_command(const std::string& service, std::string* error);
// Returns true on success; returns false and fills 'error' on failure.
bool adb_query(const std::string& service, std::string* result, std::string* error);
-/* Set the preferred transport to connect to.
-*/
-void adb_set_transport(transport_type type, const char* serial);
+// Set the preferred transport to connect to.
+void adb_set_transport(TransportType type, const char* serial);
/* Set TCP specifics of the transport to use
*/