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

Side by Side Diff: ios/chrome/browser/geolocation/omnibox_geolocation_local_state.mm

Issue 1662843002: Revert of Delete base/prefs and update callers to use components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #import "ios/chrome/browser/geolocation/omnibox_geolocation_local_state.h" 5 #import "ios/chrome/browser/geolocation/omnibox_geolocation_local_state.h"
6 6
7 #import <CoreLocation/CoreLocation.h> 7 #import <CoreLocation/CoreLocation.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/mac/scoped_nsobject.h" 10 #include "base/mac/scoped_nsobject.h"
11 #include "components/prefs/pref_registry_simple.h" 11 #include "base/prefs/pref_registry_simple.h"
12 #include "components/prefs/pref_service.h" 12 #include "base/prefs/pref_service.h"
13 #include "ios/chrome/browser/application_context.h" 13 #include "ios/chrome/browser/application_context.h"
14 #import "ios/chrome/browser/geolocation/location_manager.h" 14 #import "ios/chrome/browser/geolocation/location_manager.h"
15 #import "ios/chrome/browser/pref_names.h" 15 #import "ios/chrome/browser/pref_names.h"
16 16
17 @interface OmniboxGeolocationLocalState () { 17 @interface OmniboxGeolocationLocalState () {
18 base::scoped_nsobject<LocationManager> locationManager_; 18 base::scoped_nsobject<LocationManager> locationManager_;
19 } 19 }
20 20
21 - (int)intForPath:(const char*)path; 21 - (int)intForPath:(const char*)path;
22 - (void)setInt:(int)value forPath:(const char*)path; 22 - (void)setInt:(int)value forPath:(const char*)path;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 - (std::string)stringForPath:(const char*)path { 118 - (std::string)stringForPath:(const char*)path {
119 return GetApplicationContext()->GetLocalState()->GetString(path); 119 return GetApplicationContext()->GetLocalState()->GetString(path);
120 } 120 }
121 121
122 - (void)setString:(const std::string&)value forPath:(const char*)path { 122 - (void)setString:(const std::string&)value forPath:(const char*)path {
123 GetApplicationContext()->GetLocalState()->SetString(path, value); 123 GetApplicationContext()->GetLocalState()->SetString(path, value);
124 } 124 }
125 125
126 @end 126 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698