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

Side by Side Diff: components/browser_sync/browser/profile_sync_service.h

Issue 1546143002: Switch to standard integer types in components/, part 1 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 (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_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_H_ 5 #ifndef COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_H_
6 #define COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_H_ 6 #define COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
11 11
12 #include "base/basictypes.h"
13 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
14 #include "base/files/file_path.h" 13 #include "base/files/file_path.h"
15 #include "base/gtest_prod_util.h" 14 #include "base/gtest_prod_util.h"
16 #include "base/location.h" 15 #include "base/location.h"
16 #include "base/macros.h"
17 #include "base/memory/memory_pressure_listener.h" 17 #include "base/memory/memory_pressure_listener.h"
18 #include "base/memory/scoped_ptr.h" 18 #include "base/memory/scoped_ptr.h"
19 #include "base/memory/weak_ptr.h" 19 #include "base/memory/weak_ptr.h"
20 #include "base/observer_list.h" 20 #include "base/observer_list.h"
21 #include "base/strings/string16.h" 21 #include "base/strings/string16.h"
22 #include "base/threading/thread_checker.h" 22 #include "base/threading/thread_checker.h"
23 #include "base/time/time.h" 23 #include "base/time/time.h"
24 #include "base/timer/timer.h" 24 #include "base/timer/timer.h"
25 #include "build/build_config.h"
25 #include "components/keyed_service/core/keyed_service.h" 26 #include "components/keyed_service/core/keyed_service.h"
26 #include "components/signin/core/browser/signin_manager_base.h" 27 #include "components/signin/core/browser/signin_manager_base.h"
27 #include "components/sync_driver/backup_rollback_controller.h" 28 #include "components/sync_driver/backup_rollback_controller.h"
28 #include "components/sync_driver/data_type_controller.h" 29 #include "components/sync_driver/data_type_controller.h"
29 #include "components/sync_driver/data_type_manager.h" 30 #include "components/sync_driver/data_type_manager.h"
30 #include "components/sync_driver/data_type_manager_observer.h" 31 #include "components/sync_driver/data_type_manager_observer.h"
31 #include "components/sync_driver/data_type_status_table.h" 32 #include "components/sync_driver/data_type_status_table.h"
32 #include "components/sync_driver/device_info_sync_service.h" 33 #include "components/sync_driver/device_info_sync_service.h"
33 #include "components/sync_driver/glue/sync_backend_host.h" 34 #include "components/sync_driver/glue/sync_backend_host.h"
34 #include "components/sync_driver/local_device_info_provider.h" 35 #include "components/sync_driver/local_device_info_provider.h"
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1051 base::WeakPtrFactory<ProfileSyncService> startup_controller_weak_factory_; 1052 base::WeakPtrFactory<ProfileSyncService> startup_controller_weak_factory_;
1052 1053
1053 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); 1054 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService);
1054 }; 1055 };
1055 1056
1056 bool ShouldShowActionOnUI( 1057 bool ShouldShowActionOnUI(
1057 const syncer::SyncProtocolError& error); 1058 const syncer::SyncProtocolError& error);
1058 1059
1059 1060
1060 #endif // COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_H_ 1061 #endif // COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698