OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_SYNC_OPERATION_RESOLVER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_SYNC_OPERATION_RESOLVER_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_SYNC_OPERATION_RESOLVER_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_SYNC_OPERATION_RESOLVER_H_ |
7 | 7 |
8 #include "base/gtest_prod_util.h" | 8 #include "base/gtest_prod_util.h" |
9 #include "webkit/fileapi/syncable/file_change.h" | 9 #include "webkit/browser/fileapi/syncable/file_change.h" |
10 #include "webkit/fileapi/syncable/sync_file_type.h" | 10 #include "webkit/browser/fileapi/syncable/sync_file_type.h" |
11 | 11 |
12 namespace sync_file_system { | 12 namespace sync_file_system { |
13 | 13 |
14 class DriveMetadata; | 14 class DriveMetadata; |
15 class FileChange; | 15 class FileChange; |
16 | 16 |
17 enum LocalSyncOperationType { | 17 enum LocalSyncOperationType { |
18 LOCAL_SYNC_OPERATION_ADD_FILE, | 18 LOCAL_SYNC_OPERATION_ADD_FILE, |
19 LOCAL_SYNC_OPERATION_ADD_DIRECTORY, | 19 LOCAL_SYNC_OPERATION_ADD_DIRECTORY, |
20 LOCAL_SYNC_OPERATION_UPDATE_FILE, | 20 LOCAL_SYNC_OPERATION_UPDATE_FILE, |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 ResolveForDeleteFileInConflict); | 72 ResolveForDeleteFileInConflict); |
73 FRIEND_TEST_ALL_PREFIXES(LocalSyncOperationResolverTest, | 73 FRIEND_TEST_ALL_PREFIXES(LocalSyncOperationResolverTest, |
74 ResolveForDeleteDirectory); | 74 ResolveForDeleteDirectory); |
75 FRIEND_TEST_ALL_PREFIXES(LocalSyncOperationResolverTest, | 75 FRIEND_TEST_ALL_PREFIXES(LocalSyncOperationResolverTest, |
76 ResolveForDeleteDirectoryInConflict); | 76 ResolveForDeleteDirectoryInConflict); |
77 }; | 77 }; |
78 | 78 |
79 } // namespace sync_file_system | 79 } // namespace sync_file_system |
80 | 80 |
81 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_SYNC_OPERATION_RESOLVER_H_ | 81 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_SYNC_OPERATION_RESOLVER_H_ |
OLD | NEW |