| 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_SYNC_BOOKMARKS_BOOKMARK_CHANGE_PROCESSOR_H_ | 5 #ifndef COMPONENTS_SYNC_BOOKMARKS_BOOKMARK_CHANGE_PROCESSOR_H_ |
| 6 #define COMPONENTS_SYNC_BOOKMARKS_BOOKMARK_CHANGE_PROCESSOR_H_ | 6 #define COMPONENTS_SYNC_BOOKMARKS_BOOKMARK_CHANGE_PROCESSOR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/threading/thread_checker.h" | 15 #include "base/threading/thread_checker.h" |
| 16 #include "components/bookmarks/browser/bookmark_model_observer.h" | 16 #include "components/bookmarks/browser/bookmark_model_observer.h" |
| 17 #include "components/bookmarks/browser/bookmark_node.h" | 17 #include "components/bookmarks/browser/bookmark_node.h" |
| 18 #include "components/sync/core/data_type_error_handler.h" | 18 #include "components/sync/core/data_type_error_handler.h" |
| 19 #include "components/sync/driver/change_processor.h" |
| 19 #include "components/sync_bookmarks/bookmark_model_associator.h" | 20 #include "components/sync_bookmarks/bookmark_model_associator.h" |
| 20 #include "components/sync_driver/change_processor.h" | |
| 21 | 21 |
| 22 class Profile; | 22 class Profile; |
| 23 | 23 |
| 24 namespace base { | 24 namespace base { |
| 25 class RefCountedMemory; | 25 class RefCountedMemory; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace syncer { | 28 namespace syncer { |
| 29 class WriteNode; | 29 class WriteNode; |
| 30 class WriteTransaction; | 30 class WriteTransaction; |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 252 |
| 253 // The two models should be associated according to this ModelAssociator. | 253 // The two models should be associated according to this ModelAssociator. |
| 254 BookmarkModelAssociator* model_associator_; | 254 BookmarkModelAssociator* model_associator_; |
| 255 | 255 |
| 256 DISALLOW_COPY_AND_ASSIGN(BookmarkChangeProcessor); | 256 DISALLOW_COPY_AND_ASSIGN(BookmarkChangeProcessor); |
| 257 }; | 257 }; |
| 258 | 258 |
| 259 } // namespace browser_sync | 259 } // namespace browser_sync |
| 260 | 260 |
| 261 #endif // COMPONENTS_SYNC_BOOKMARKS_BOOKMARK_CHANGE_PROCESSOR_H_ | 261 #endif // COMPONENTS_SYNC_BOOKMARKS_BOOKMARK_CHANGE_PROCESSOR_H_ |
| OLD | NEW |