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

Side by Side Diff: chrome/browser/geolocation/chrome_geolocation_permission_context_factory.cc

Issue 11570009: Split PrefService into PrefService, PrefServiceSimple and PrefServiceSyncable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head again, previous had unrelated broken win_rel test. Created 7 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 | Annotate | Revision Log
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 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto ry.h" 5 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto ry.h"
6 6
7 #include "chrome/common/pref_names.h" 7 #include "chrome/common/pref_names.h"
8 #if defined(OS_ANDROID) 8 #if defined(OS_ANDROID)
9 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_andro id.h" 9 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_andro id.h"
10 #else 10 #else
11 #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h" 11 #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h"
12 #endif 12 #endif
13 13
14 ChromeGeolocationPermissionContext* 14 ChromeGeolocationPermissionContext*
15 ChromeGeolocationPermissionContextFactory::Create(Profile* profile) { 15 ChromeGeolocationPermissionContextFactory::Create(Profile* profile) {
16 #if defined(OS_ANDROID) 16 #if defined(OS_ANDROID)
17 return new ChromeGeolocationPermissionContextAndroid(profile); 17 return new ChromeGeolocationPermissionContextAndroid(profile);
18 #else 18 #else
19 return new ChromeGeolocationPermissionContext(profile); 19 return new ChromeGeolocationPermissionContext(profile);
20 #endif 20 #endif
21 } 21 }
22 22
23 void ChromeGeolocationPermissionContextFactory::RegisterUserPrefs( 23 void ChromeGeolocationPermissionContextFactory::RegisterUserPrefs(
24 PrefService* user_prefs) { 24 PrefServiceSyncable* user_prefs) {
25 #if defined(OS_ANDROID) 25 #if defined(OS_ANDROID)
26 user_prefs->RegisterBooleanPref(prefs::kGeolocationEnabled, 26 user_prefs->RegisterBooleanPref(prefs::kGeolocationEnabled,
27 true, 27 true,
28 PrefService::UNSYNCABLE_PREF); 28 PrefServiceSyncable::UNSYNCABLE_PREF);
29 #endif 29 #endif
30 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698