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_SHARED_CHANGE_PROCESSOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_H_ |
6 #define CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/location.h" | 8 #include "base/location.h" |
10 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
11 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
12 #include "base/message_loop_proxy.h" | 11 #include "base/message_loop_proxy.h" |
13 #include "base/synchronization/lock.h" | 12 #include "base/synchronization/lock.h" |
14 #include "chrome/browser/sync/glue/data_type_error_handler.h" | 13 #include "chrome/browser/sync/glue/data_type_error_handler.h" |
15 #include "sync/api/sync_change_processor.h" | 14 #include "sync/api/sync_change_processor.h" |
16 #include "sync/api/sync_error.h" | 15 #include "sync/api/sync_error.h" |
17 #include "sync/api/sync_error_factory.h" | 16 #include "sync/api/sync_error_factory.h" |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 GenericChangeProcessor* generic_change_processor_; | 121 GenericChangeProcessor* generic_change_processor_; |
123 | 122 |
124 DataTypeErrorHandler* error_handler_; | 123 DataTypeErrorHandler* error_handler_; |
125 | 124 |
126 DISALLOW_COPY_AND_ASSIGN(SharedChangeProcessor); | 125 DISALLOW_COPY_AND_ASSIGN(SharedChangeProcessor); |
127 }; | 126 }; |
128 | 127 |
129 } // namespace browser_sync | 128 } // namespace browser_sync |
130 | 129 |
131 #endif // CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_H_ | 130 #endif // CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_H_ |
OLD | NEW |