OLD | NEW |
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 "base/prefs/pref_registry_simple.h" | 11 #include "components/prefs/pref_registry_simple.h" |
12 #include "base/prefs/pref_service.h" | 12 #include "components/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 Loading... |
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 |
OLD | NEW |