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

Side by Side Diff: chrome/common/pref_names.cc

Issue 7328018: Migrate default geolocation content setting to host content settings map. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nits Created 9 years, 5 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 1325 matching lines...) Expand 10 before | Expand all | Expand 10 after
1336 const char kManagedDefaultCookiesSetting[] = 1336 const char kManagedDefaultCookiesSetting[] =
1337 "profile.managed_default_content_settings.cookies"; 1337 "profile.managed_default_content_settings.cookies";
1338 const char kManagedDefaultImagesSetting[] = 1338 const char kManagedDefaultImagesSetting[] =
1339 "profile.managed_default_content_settings.images"; 1339 "profile.managed_default_content_settings.images";
1340 const char kManagedDefaultJavaScriptSetting[] = 1340 const char kManagedDefaultJavaScriptSetting[] =
1341 "profile.managed_default_content_settings.javascript"; 1341 "profile.managed_default_content_settings.javascript";
1342 const char kManagedDefaultPluginsSetting[] = 1342 const char kManagedDefaultPluginsSetting[] =
1343 "profile.managed_default_content_settings.plugins"; 1343 "profile.managed_default_content_settings.plugins";
1344 const char kManagedDefaultPopupsSetting[] = 1344 const char kManagedDefaultPopupsSetting[] =
1345 "profile.managed_default_content_settings.popups"; 1345 "profile.managed_default_content_settings.popups";
1346 const char kManagedDefaultGeolocationSetting[] =
1347 "profile.managed_default_content_settings.geolocation";
1346 1348
1347 // Preferences that are exclusively used to store managed 1349 // Preferences that are exclusively used to store managed
1348 // content settings patterns. 1350 // content settings patterns.
1349 const char kManagedCookiesAllowedForUrls[] = 1351 const char kManagedCookiesAllowedForUrls[] =
1350 "profile.managed_cookies_allowed_for_urls"; 1352 "profile.managed_cookies_allowed_for_urls";
1351 const char kManagedCookiesBlockedForUrls[] = 1353 const char kManagedCookiesBlockedForUrls[] =
1352 "profile.managed_cookies_blocked_for_urls"; 1354 "profile.managed_cookies_blocked_for_urls";
1353 const char kManagedCookiesSessionOnlyForUrls[] = 1355 const char kManagedCookiesSessionOnlyForUrls[] =
1354 "profile.managed_cookies_sessiononly_for_urls"; 1356 "profile.managed_cookies_sessiononly_for_urls";
1355 const char kManagedImagesAllowedForUrls[] = 1357 const char kManagedImagesAllowedForUrls[] =
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 // Whether user-specified handlers for protocols and content types can be 1389 // Whether user-specified handlers for protocols and content types can be
1388 // specified. 1390 // specified.
1389 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; 1391 const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
1390 1392
1391 // Integers that specify the policy refresh rate for device- and user-policy in 1393 // Integers that specify the policy refresh rate for device- and user-policy in
1392 // milliseconds. Not all values are meaningful, so it is clamped to a sane range 1394 // milliseconds. Not all values are meaningful, so it is clamped to a sane range
1393 // by the cloud policy subsystem. 1395 // by the cloud policy subsystem.
1394 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; 1396 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate";
1395 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; 1397 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate";
1396 } // namespace prefs 1398 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698