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/bookmarks/bookmark_model_observer.h" | |
12 #include "chrome/browser/sync/glue/bookmark_model_associator.h" | 11 #include "chrome/browser/sync/glue/bookmark_model_associator.h" |
13 #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" |
14 #include "components/bookmarks/core/browser/bookmark_node.h" | 14 #include "components/bookmarks/core/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 |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 | 201 |
202 // The two models should be associated according to this ModelAssociator. | 202 // The two models should be associated according to this ModelAssociator. |
203 BookmarkModelAssociator* model_associator_; | 203 BookmarkModelAssociator* model_associator_; |
204 | 204 |
205 DISALLOW_COPY_AND_ASSIGN(BookmarkChangeProcessor); | 205 DISALLOW_COPY_AND_ASSIGN(BookmarkChangeProcessor); |
206 }; | 206 }; |
207 | 207 |
208 } // namespace browser_sync | 208 } // namespace browser_sync |
209 | 209 |
210 #endif // CHROME_BROWSER_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ | 210 #endif // CHROME_BROWSER_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ |
OLD | NEW |