| 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_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "chrome/browser/sync/glue/bookmark_model_associator.h" | 11 #include "chrome/browser/sync/glue/bookmark_model_associator.h" |
| 12 #include "chrome/browser/sync/glue/sync_backend_host.h" | 12 #include "chrome/browser/sync/glue/sync_backend_host.h" |
| 13 #include "components/bookmarks/core/browser/bookmark_model_observer.h" | 13 #include "components/bookmarks/browser/bookmark_model_observer.h" |
| 14 #include "components/bookmarks/core/browser/bookmark_node.h" | 14 #include "components/bookmarks/browser/bookmark_node.h" |
| 15 #include "components/sync_driver/change_processor.h" | 15 #include "components/sync_driver/change_processor.h" |
| 16 #include "components/sync_driver/data_type_error_handler.h" | 16 #include "components/sync_driver/data_type_error_handler.h" |
| 17 | 17 |
| 18 class Profile; | 18 class Profile; |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class RefCountedMemory; | 21 class RefCountedMemory; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace syncer { | 24 namespace syncer { |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 204 |
| 205 // The two models should be associated according to this ModelAssociator. | 205 // The two models should be associated according to this ModelAssociator. |
| 206 BookmarkModelAssociator* model_associator_; | 206 BookmarkModelAssociator* model_associator_; |
| 207 | 207 |
| 208 DISALLOW_COPY_AND_ASSIGN(BookmarkChangeProcessor); | 208 DISALLOW_COPY_AND_ASSIGN(BookmarkChangeProcessor); |
| 209 }; | 209 }; |
| 210 | 210 |
| 211 } // namespace browser_sync | 211 } // namespace browser_sync |
| 212 | 212 |
| 213 #endif // CHROME_BROWSER_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ | 213 #endif // CHROME_BROWSER_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ |
| OLD | NEW |