| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/sync/glue/new_non_frontend_data_type_controller.h" | 5 #include "chrome/browser/sync/glue/new_non_frontend_data_type_controller.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/sync/api/sync_error.h" | 8 #include "chrome/browser/sync/api/sync_error.h" |
| 9 #include "chrome/browser/sync/api/syncable_service.h" | 9 #include "chrome/browser/sync/api/syncable_service.h" |
| 10 #include "chrome/browser/sync/glue/shared_change_processor_ref.h" | 10 #include "chrome/browser/sync/glue/shared_change_processor_ref.h" |
| 11 #include "chrome/browser/sync/profile_sync_factory.h" | 11 #include "chrome/browser/sync/profile_sync_factory.h" |
| 12 #include "chrome/browser/sync/profile_sync_service.h" | 12 #include "chrome/browser/sync/profile_sync_service.h" |
| 13 #include "chrome/browser/sync/syncable/model_type.h" | 13 #include "chrome/browser/sync/syncable/model_type.h" |
| 14 #include "content/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
| 15 | 15 |
| 16 using content::BrowserThread; |
| 17 |
| 16 namespace browser_sync { | 18 namespace browser_sync { |
| 17 | 19 |
| 18 NewNonFrontendDataTypeController::NewNonFrontendDataTypeController() | 20 NewNonFrontendDataTypeController::NewNonFrontendDataTypeController() |
| 19 : shared_change_processor_(NULL) {} | 21 : shared_change_processor_(NULL) {} |
| 20 | 22 |
| 21 NewNonFrontendDataTypeController::NewNonFrontendDataTypeController( | 23 NewNonFrontendDataTypeController::NewNonFrontendDataTypeController( |
| 22 ProfileSyncFactory* profile_sync_factory, | 24 ProfileSyncFactory* profile_sync_factory, |
| 23 Profile* profile) | 25 Profile* profile) |
| 24 : NonFrontendDataTypeController(profile_sync_factory, profile), | 26 : NonFrontendDataTypeController(profile_sync_factory, profile), |
| 25 shared_change_processor_(NULL) { | 27 shared_change_processor_(NULL) { |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 bool NewNonFrontendDataTypeController::StopAssociationAsync() { | 235 bool NewNonFrontendDataTypeController::StopAssociationAsync() { |
| 234 NOTIMPLEMENTED(); | 236 NOTIMPLEMENTED(); |
| 235 return false; | 237 return false; |
| 236 } | 238 } |
| 237 | 239 |
| 238 void NewNonFrontendDataTypeController::CreateSyncComponents() { | 240 void NewNonFrontendDataTypeController::CreateSyncComponents() { |
| 239 NOTIMPLEMENTED(); | 241 NOTIMPLEMENTED(); |
| 240 } | 242 } |
| 241 | 243 |
| 242 } // namepsace browser_sync | 244 } // namepsace browser_sync |
| OLD | NEW |