diff options
author | Josh Gao <jmgao@google.com> | 2018-07-25 15:55:25 -0700 |
---|---|---|
committer | Josh Gao <jmgao@google.com> | 2018-07-25 18:08:32 -0700 |
commit | edec033b263ce2a227e6761d2058b7494715e46c (patch) | |
tree | 110d4a18d4bd7f5e1f2b224be6d47cad194a0c13 /adb/daemon/file_sync_service.cpp | |
parent | 220c1d558957cb977d48a3ccff4d932e01a7a3fc (diff) |
adb: split file_sync_service.h into client and daemon parts.
Test: treehugger
Change-Id: I648c7001903a91448c69986e08a6cd2dd76ed793
Diffstat (limited to 'adb/daemon/file_sync_service.cpp')
-rw-r--r-- | adb/daemon/file_sync_service.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/adb/daemon/file_sync_service.cpp b/adb/daemon/file_sync_service.cpp index 0b713631e..7ae806a0e 100644 --- a/adb/daemon/file_sync_service.cpp +++ b/adb/daemon/file_sync_service.cpp @@ -16,8 +16,9 @@ #define TRACE_TAG SYNC +#include "daemon/file_sync_service.h" + #include "sysdeps.h" -#include "file_sync_service.h" #include <dirent.h> #include <errno.h> @@ -42,6 +43,7 @@ #include "adb_io.h" #include "adb_trace.h" #include "adb_utils.h" +#include "file_sync_protocol.h" #include "security_log_tags.h" #include "sysdeps/errno.h" |