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_CHANGE_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_REMOTE_CHANGE_HANDLER_H
_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_REMOTE_CHANGE_HANDLER_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_REMOTE_CHANGE_HANDLER_H
_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <utility> | 11 #include <utility> |
12 | 12 |
13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "chrome/browser/sync_file_system/file_change.h" | 16 #include "chrome/browser/sync_file_system/file_change.h" |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 typedef std::map<GURL, PathToChangeMap> OriginToChangesMap; | 99 typedef std::map<GURL, PathToChangeMap> OriginToChangesMap; |
100 | 100 |
101 PendingChangeQueue changes_; | 101 PendingChangeQueue changes_; |
102 OriginToChangesMap origin_to_changes_map_; | 102 OriginToChangesMap origin_to_changes_map_; |
103 | 103 |
104 DISALLOW_COPY_AND_ASSIGN(RemoteChangeHandler); | 104 DISALLOW_COPY_AND_ASSIGN(RemoteChangeHandler); |
105 }; | 105 }; |
106 | 106 |
107 } // namespace sync_file_system | 107 } // namespace sync_file_system |
108 | 108 |
109 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_REMOTE_CHANGE_HANDLER_H
_ | 109 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_REMOTE_CHANGE_HANDLE
R_H_ |
OLD | NEW |