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_CHANGE_PROCESSOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_CHANGE_PROCESSOR_H_ |
6 #define CHROME_BROWSER_SYNC_GLUE_CHANGE_PROCESSOR_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_CHANGE_PROCESSOR_H_ |
7 #pragma once | |
8 | 7 |
9 #include "chrome/browser/sync/glue/data_type_error_handler.h" | 8 #include "chrome/browser/sync/glue/data_type_error_handler.h" |
10 #include "chrome/browser/sync/glue/sync_backend_host.h" | 9 #include "chrome/browser/sync/glue/sync_backend_host.h" |
11 #include "sync/internal_api/public/change_record.h" | 10 #include "sync/internal_api/public/change_record.h" |
12 | 11 |
13 class Profile; | 12 class Profile; |
14 | 13 |
15 namespace syncer { | 14 namespace syncer { |
16 class UnrecoverableErrorHandler; | 15 class UnrecoverableErrorHandler; |
17 } // namespace syncer | 16 } // namespace syncer |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 // The sync model we are processing changes from. Non-NULL when |running_| is | 90 // The sync model we are processing changes from. Non-NULL when |running_| is |
92 // true. | 91 // true. |
93 syncer::UserShare* share_handle_; | 92 syncer::UserShare* share_handle_; |
94 | 93 |
95 DISALLOW_COPY_AND_ASSIGN(ChangeProcessor); | 94 DISALLOW_COPY_AND_ASSIGN(ChangeProcessor); |
96 }; | 95 }; |
97 | 96 |
98 } // namespace browser_sync | 97 } // namespace browser_sync |
99 | 98 |
100 #endif // CHROME_BROWSER_SYNC_GLUE_CHANGE_PROCESSOR_H_ | 99 #endif // CHROME_BROWSER_SYNC_GLUE_CHANGE_PROCESSOR_H_ |
OLD | NEW |