| 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 CHROME_BROWSER_CHROMEOS_DRIVE_CHANGE_LIST_PROCESSOR_H_ | 5 #ifndef COMPONENTS_DRIVE_CHANGE_LIST_PROCESSOR_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_CHANGE_LIST_PROCESSOR_H_ | 6 #define COMPONENTS_DRIVE_CHANGE_LIST_PROCESSOR_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
| 15 #include "components/drive/file_errors.h" | 15 #include "components/drive/file_errors.h" |
| 16 #include "components/drive/file_errors.h" | 16 #include "components/drive/file_errors.h" |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 ResourceEntryMap entry_map_; | 161 ResourceEntryMap entry_map_; |
| 162 ParentResourceIdMap parent_resource_id_map_; | 162 ParentResourceIdMap parent_resource_id_map_; |
| 163 scoped_ptr<FileChange> changed_files_; | 163 scoped_ptr<FileChange> changed_files_; |
| 164 | 164 |
| 165 DISALLOW_COPY_AND_ASSIGN(ChangeListProcessor); | 165 DISALLOW_COPY_AND_ASSIGN(ChangeListProcessor); |
| 166 }; | 166 }; |
| 167 | 167 |
| 168 } // namespace internal | 168 } // namespace internal |
| 169 } // namespace drive | 169 } // namespace drive |
| 170 | 170 |
| 171 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_CHANGE_LIST_PROCESSOR_H_ | 171 #endif // COMPONENTS_DRIVE_CHANGE_LIST_PROCESSOR_H_ |
| OLD | NEW |