Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: components/sync_driver/directory_data_type_controller.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_DIRECTORY_DATA_TYPE_CONTROLLER_H__ 5 #ifndef COMPONENTS_SYNC_DRIVER_DIRECTORY_DATA_TYPE_CONTROLLER_H__
6 #define COMPONENTS_SYNC_DRIVER_DIRECTORY_DATA_TYPE_CONTROLLER_H__ 6 #define COMPONENTS_SYNC_DRIVER_DIRECTORY_DATA_TYPE_CONTROLLER_H__
7 7
8 #include "components/sync_driver/data_type_controller.h" 8 #include "components/sync_driver/data_type_controller.h"
9 9
10 #include "sync/internal_api/public/engine/model_safe_worker.h" 10 #include "components/sync/engine/model_safe_worker.h"
11 11
12 namespace sync_driver { 12 namespace sync_driver {
13 class ChangeProcessor; 13 class ChangeProcessor;
14 14
15 // Base class for Directory based Data type controllers. 15 // Base class for Directory based Data type controllers.
16 class DirectoryDataTypeController : public DataTypeController { 16 class DirectoryDataTypeController : public DataTypeController {
17 public: 17 public:
18 // DataTypeController implementation. 18 // DataTypeController implementation.
19 bool ShouldLoadModelBeforeConfigure() const override; 19 bool ShouldLoadModelBeforeConfigure() const override;
20 20
(...skipping 29 matching lines...) Expand all
50 DirectoryDataTypeController( 50 DirectoryDataTypeController(
51 const scoped_refptr<base::SingleThreadTaskRunner>& ui_thread, 51 const scoped_refptr<base::SingleThreadTaskRunner>& ui_thread,
52 const base::Closure& error_callback); 52 const base::Closure& error_callback);
53 53
54 ~DirectoryDataTypeController() override; 54 ~DirectoryDataTypeController() override;
55 }; 55 };
56 56
57 } // namespace sync_driver 57 } // namespace sync_driver
58 58
59 #endif // COMPONENTS_SYNC_DRIVER_DIRECTORY_DATA_TYPE_CONTROLLER_H__ 59 #endif // COMPONENTS_SYNC_DRIVER_DIRECTORY_DATA_TYPE_CONTROLLER_H__
OLDNEW
« no previous file with comments | « components/sync_driver/device_info_util_unittest.cc ('k') | components/sync_driver/fake_data_type_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698