| 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_DRIVER_FRONTEND_DATA_TYPE_CONTROLLER_H__ | 5 #ifndef COMPONENTS_SYNC_DRIVER_FRONTEND_DATA_TYPE_CONTROLLER_H__ |
| 6 #define COMPONENTS_SYNC_DRIVER_FRONTEND_DATA_TYPE_CONTROLLER_H__ | 6 #define COMPONENTS_SYNC_DRIVER_FRONTEND_DATA_TYPE_CONTROLLER_H__ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "components/sync/api/data_type_error_handler.h" | |
| 14 #include "components/sync/driver/directory_data_type_controller.h" | 13 #include "components/sync/driver/directory_data_type_controller.h" |
| 14 #include "components/sync/model/data_type_error_handler.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class TimeDelta; | 17 class TimeDelta; |
| 18 } // namespace base | 18 } // namespace base |
| 19 | 19 |
| 20 namespace syncer { | 20 namespace syncer { |
| 21 | 21 |
| 22 class AssociatorInterface; | 22 class AssociatorInterface; |
| 23 class ChangeProcessor; | 23 class ChangeProcessor; |
| 24 class SyncClient; | 24 class SyncClient; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 115 |
| 116 // Handle an unrecoverable error. | 116 // Handle an unrecoverable error. |
| 117 void OnUnrecoverableError(const SyncError& error); | 117 void OnUnrecoverableError(const SyncError& error); |
| 118 | 118 |
| 119 DISALLOW_COPY_AND_ASSIGN(FrontendDataTypeController); | 119 DISALLOW_COPY_AND_ASSIGN(FrontendDataTypeController); |
| 120 }; | 120 }; |
| 121 | 121 |
| 122 } // namespace syncer | 122 } // namespace syncer |
| 123 | 123 |
| 124 #endif // COMPONENTS_SYNC_DRIVER_FRONTEND_DATA_TYPE_CONTROLLER_H__ | 124 #endif // COMPONENTS_SYNC_DRIVER_FRONTEND_DATA_TYPE_CONTROLLER_H__ |
| OLD | NEW |