| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_SYNC_BACKEND_HOST_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ | 6 #define COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
| 15 #include "components/sync_driver/backend_data_type_configurer.h" | 15 #include "components/sync_driver/backend_data_type_configurer.h" |
| 16 #include "sync/internal_api/public/base/model_type.h" | 16 #include "sync/internal_api/public/base/model_type.h" |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 | 220 |
| 221 virtual base::MessageLoop* GetSyncLoopForTesting() = 0; | 221 virtual base::MessageLoop* GetSyncLoopForTesting() = 0; |
| 222 | 222 |
| 223 // Triggers sync cycle to update |types|. | 223 // Triggers sync cycle to update |types|. |
| 224 virtual void RefreshTypesForTest(syncer::ModelTypeSet types) = 0; | 224 virtual void RefreshTypesForTest(syncer::ModelTypeSet types) = 0; |
| 225 | 225 |
| 226 // See SyncManager::ClearServerData. | 226 // See SyncManager::ClearServerData. |
| 227 virtual void ClearServerData( | 227 virtual void ClearServerData( |
| 228 const syncer::SyncManager::ClearServerDataCallback& callback) = 0; | 228 const syncer::SyncManager::ClearServerDataCallback& callback) = 0; |
| 229 | 229 |
| 230 private: |
| 230 DISALLOW_COPY_AND_ASSIGN(SyncBackendHost); | 231 DISALLOW_COPY_AND_ASSIGN(SyncBackendHost); |
| 231 }; | 232 }; |
| 232 | 233 |
| 233 } // namespace browser_sync | 234 } // namespace browser_sync |
| 234 | 235 |
| 235 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_H_ | 236 #endif // COMPONENTS_SYNC_DRIVER_GLUE_SYNC_BACKEND_HOST_H_ |
| OLD | NEW |