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

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

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_DATA_TYPE_MANAGER_IMPL_H__ 5 #ifndef COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__
6 #define COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__ 6 #define COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__
7 7
8 #include "components/sync_driver/data_type_manager.h" 8 #include "components/sync_driver/data_type_manager.h"
9 9
10 #include <map> 10 #include <map>
11 #include <queue> 11 #include <queue>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/basictypes.h"
15 #include "base/callback_forward.h" 14 #include "base/callback_forward.h"
16 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
16 #include "base/macros.h"
17 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 #include "base/time/time.h" 18 #include "base/time/time.h"
19 #include "components/sync_driver/backend_data_type_configurer.h" 19 #include "components/sync_driver/backend_data_type_configurer.h"
20 #include "components/sync_driver/model_association_manager.h" 20 #include "components/sync_driver/model_association_manager.h"
21 21
22 namespace syncer { 22 namespace syncer {
23 struct DataTypeConfigurationStats; 23 struct DataTypeConfigurationStats;
24 class DataTypeDebugInfoListener; 24 class DataTypeDebugInfoListener;
25 template <typename T> class WeakHandle; 25 template <typename T> class WeakHandle;
26 } 26 }
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 bool catch_up_in_progress_; 225 bool catch_up_in_progress_;
226 226
227 base::WeakPtrFactory<DataTypeManagerImpl> weak_ptr_factory_; 227 base::WeakPtrFactory<DataTypeManagerImpl> weak_ptr_factory_;
228 228
229 DISALLOW_COPY_AND_ASSIGN(DataTypeManagerImpl); 229 DISALLOW_COPY_AND_ASSIGN(DataTypeManagerImpl);
230 }; 230 };
231 231
232 } // namespace sync_driver 232 } // namespace sync_driver
233 233
234 #endif // COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__ 234 #endif // COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__
OLDNEW
« no previous file with comments | « components/sync_driver/data_type_encryption_handler.h ('k') | components/sync_driver/device_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698