| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 COMPONENTS_DRIVE_CHROMEOS_CHANGE_LIST_PROCESSOR_H_ | 5 #ifndef COMPONENTS_DRIVE_CHROMEOS_CHANGE_LIST_PROCESSOR_H_ |
| 6 #define COMPONENTS_DRIVE_CHROMEOS_CHANGE_LIST_PROCESSOR_H_ | 6 #define COMPONENTS_DRIVE_CHROMEOS_CHANGE_LIST_PROCESSOR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <set> | 12 #include <set> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/files/file_path.h" | 16 #include "base/files/file_path.h" |
| 17 #include "base/macros.h" | 17 #include "base/macros.h" |
| 18 #include "components/drive/file_errors.h" | 18 #include "components/drive/file_errors.h" |
| 19 #include "components/drive/file_errors.h" | |
| 20 #include "url/gurl.h" | 19 #include "url/gurl.h" |
| 21 | 20 |
| 22 namespace base { | 21 namespace base { |
| 23 class CancellationFlag; | 22 class CancellationFlag; |
| 24 } // namespace base | 23 } // namespace base |
| 25 | 24 |
| 26 namespace google_apis { | 25 namespace google_apis { |
| 27 class AboutResource; | 26 class AboutResource; |
| 28 class ChangeList; | 27 class ChangeList; |
| 29 class FileList; | 28 class FileList; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 ParentResourceIdMap parent_resource_id_map_; | 163 ParentResourceIdMap parent_resource_id_map_; |
| 165 std::unique_ptr<FileChange> changed_files_; | 164 std::unique_ptr<FileChange> changed_files_; |
| 166 | 165 |
| 167 DISALLOW_COPY_AND_ASSIGN(ChangeListProcessor); | 166 DISALLOW_COPY_AND_ASSIGN(ChangeListProcessor); |
| 168 }; | 167 }; |
| 169 | 168 |
| 170 } // namespace internal | 169 } // namespace internal |
| 171 } // namespace drive | 170 } // namespace drive |
| 172 | 171 |
| 173 #endif // COMPONENTS_DRIVE_CHROMEOS_CHANGE_LIST_PROCESSOR_H_ | 172 #endif // COMPONENTS_DRIVE_CHROMEOS_CHANGE_LIST_PROCESSOR_H_ |
| OLD | NEW |