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 #pragma once | |
8 | 7 |
9 #include <vector> | 8 #include <vector> |
10 | 9 |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
12 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 11 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
13 #include "chrome/browser/sync/glue/bookmark_model_associator.h" | 12 #include "chrome/browser/sync/glue/bookmark_model_associator.h" |
14 #include "chrome/browser/sync/glue/change_processor.h" | 13 #include "chrome/browser/sync/glue/change_processor.h" |
15 #include "chrome/browser/sync/glue/data_type_error_handler.h" | 14 #include "chrome/browser/sync/glue/data_type_error_handler.h" |
16 #include "chrome/browser/sync/glue/sync_backend_host.h" | 15 #include "chrome/browser/sync/glue/sync_backend_host.h" |
17 | 16 |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 | 168 |
170 // The two models should be associated according to this ModelAssociator. | 169 // The two models should be associated according to this ModelAssociator. |
171 BookmarkModelAssociator* model_associator_; | 170 BookmarkModelAssociator* model_associator_; |
172 | 171 |
173 DISALLOW_COPY_AND_ASSIGN(BookmarkChangeProcessor); | 172 DISALLOW_COPY_AND_ASSIGN(BookmarkChangeProcessor); |
174 }; | 173 }; |
175 | 174 |
176 } // namespace browser_sync | 175 } // namespace browser_sync |
177 | 176 |
178 #endif // CHROME_BROWSER_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ | 177 #endif // CHROME_BROWSER_SYNC_GLUE_BOOKMARK_CHANGE_PROCESSOR_H_ |
OLD | NEW |