OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_DRIVE_BACKEND_REMOTE_SYNC_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_REMOTE_SYNC_DELEGATE_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_REMOTE_SYNC_DELEGATE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_REMOTE_SYNC_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "chrome/browser/sync_file_system/drive_backend/api_util.h" | 12 #include "chrome/browser/sync_file_system/drive_backend_v1/api_util.h" |
13 #include "chrome/browser/sync_file_system/drive_backend/drive_file_sync_service.
h" | 13 #include "chrome/browser/sync_file_system/drive_backend_v1/drive_file_sync_servi
ce.h" |
14 #include "chrome/browser/sync_file_system/drive_backend/drive_metadata_store.h" | 14 #include "chrome/browser/sync_file_system/drive_backend_v1/drive_metadata_store.
h" |
15 #include "chrome/browser/sync_file_system/file_change.h" | 15 #include "chrome/browser/sync_file_system/file_change.h" |
16 #include "chrome/browser/sync_file_system/sync_action.h" | 16 #include "chrome/browser/sync_file_system/sync_action.h" |
17 #include "chrome/browser/sync_file_system/sync_callbacks.h" | 17 #include "chrome/browser/sync_file_system/sync_callbacks.h" |
18 #include "chrome/browser/sync_file_system/sync_file_metadata.h" | 18 #include "chrome/browser/sync_file_system/sync_file_metadata.h" |
19 #include "chrome/browser/sync_file_system/sync_file_system.pb.h" | 19 #include "chrome/browser/sync_file_system/sync_file_system.pb.h" |
20 #include "webkit/browser/fileapi/file_system_url.h" | 20 #include "webkit/browser/fileapi/file_system_url.h" |
21 #include "webkit/common/blob/scoped_file.h" | 21 #include "webkit/common/blob/scoped_file.h" |
22 | 22 |
23 namespace sync_file_system { | 23 namespace sync_file_system { |
24 | 24 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 112 |
113 std::string origin_resource_id_; | 113 std::string origin_resource_id_; |
114 | 114 |
115 DISALLOW_COPY_AND_ASSIGN(RemoteSyncDelegate); | 115 DISALLOW_COPY_AND_ASSIGN(RemoteSyncDelegate); |
116 }; | 116 }; |
117 | 117 |
118 } // namespace drive_backend | 118 } // namespace drive_backend |
119 | 119 |
120 } // namespace sync_file_system | 120 } // namespace sync_file_system |
121 | 121 |
122 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_REMOTE_SYNC_DELEGATE_H_ | 122 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_REMOTE_SYNC_DELEGATE
_H_ |
OLD | NEW |