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

Side by Side Diff: ios/chrome/browser/sync/sync_setup_service.h

Issue 1544743002: Switch to standard integer types in ios/. (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 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 IOS_CHROME_BROWSER_SYNC_SYNC_SETUP_SERVICE_H_ 5 #ifndef IOS_CHROME_BROWSER_SYNC_SYNC_SETUP_SERVICE_H_
6 #define IOS_CHROME_BROWSER_SYNC_SYNC_SETUP_SERVICE_H_ 6 #define IOS_CHROME_BROWSER_SYNC_SYNC_SETUP_SERVICE_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/macros.h"
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 #include "components/keyed_service/core/keyed_service.h" 12 #include "components/keyed_service/core/keyed_service.h"
13 #include "sync/internal_api/public/base/model_type.h" 13 #include "sync/internal_api/public/base/model_type.h"
14 #include "sync/internal_api/public/util/syncer_error.h" 14 #include "sync/internal_api/public/util/syncer_error.h"
15 15
16 namespace sync_driver { 16 namespace sync_driver {
17 class SyncService; 17 class SyncService;
18 } 18 }
19 19
20 class PrefService; 20 class PrefService;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 void SetSyncEnabledWithoutChangingDatatypes(bool sync_enabled); 102 void SetSyncEnabledWithoutChangingDatatypes(bool sync_enabled);
103 103
104 sync_driver::SyncService* const sync_service_; 104 sync_driver::SyncService* const sync_service_;
105 PrefService* const prefs_; 105 PrefService* const prefs_;
106 syncer::ModelTypeSet user_selectable_types_; 106 syncer::ModelTypeSet user_selectable_types_;
107 107
108 DISALLOW_COPY_AND_ASSIGN(SyncSetupService); 108 DISALLOW_COPY_AND_ASSIGN(SyncSetupService);
109 }; 109 };
110 110
111 #endif // IOS_CHROME_BROWSER_SYNC_SYNC_SETUP_SERVICE_H_ 111 #endif // IOS_CHROME_BROWSER_SYNC_SYNC_SETUP_SERVICE_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/sync/sync_observer_bridge.h ('k') | ios/chrome/browser/sync/sync_setup_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698