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

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

Issue 27536003: Moved prefs::kUserPolicyRefreshRate to component/policy/policy_pref_names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 2 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') | components/policy/core/common/policy_pref_names.h » ('j') | 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) 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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 2329 matching lines...) Expand 10 before | Expand all | Expand 10 after
2340 "custom_handlers.registered_protocol_handlers"; 2340 "custom_handlers.registered_protocol_handlers";
2341 2341
2342 // List of protocol handlers the user has requested not to be asked about again. 2342 // List of protocol handlers the user has requested not to be asked about again.
2343 const char kIgnoredProtocolHandlers[] = 2343 const char kIgnoredProtocolHandlers[] =
2344 "custom_handlers.ignored_protocol_handlers"; 2344 "custom_handlers.ignored_protocol_handlers";
2345 2345
2346 // Whether user-specified handlers for protocols and content types can be 2346 // Whether user-specified handlers for protocols and content types can be
2347 // specified. 2347 // specified.
2348 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; 2348 const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
2349 2349
2350 // Integers that specify the policy refresh rate for device- and user-policy in 2350 // Integer that specifies the policy refresh rate for device-policy in
2351 // milliseconds. Not all values are meaningful, so it is clamped to a sane range 2351 // milliseconds. Not all values are meaningful, so it is clamped to a sane range
2352 // by the cloud policy subsystem. 2352 // by the cloud policy subsystem.
2353 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; 2353 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate";
2354 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate";
2355 2354
2356 // String that represents the recovery component last downloaded version. This 2355 // String that represents the recovery component last downloaded version. This
2357 // takes the usual 'a.b.c.d' notation. 2356 // takes the usual 'a.b.c.d' notation.
2358 const char kRecoveryComponentVersion[] = "recovery_component.version"; 2357 const char kRecoveryComponentVersion[] = "recovery_component.version";
2359 2358
2360 // String that stores the component updater last known state. This is used for 2359 // String that stores the component updater last known state. This is used for
2361 // troubleshooting. 2360 // troubleshooting.
2362 const char kComponentUpdaterState[] = "component_updater.state"; 2361 const char kComponentUpdaterState[] = "component_updater.state";
2363 2362
2364 // The next media gallery ID to assign. 2363 // The next media gallery ID to assign.
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
2574 // A dictionary pref which maps profile names to dictionary values which hold 2573 // A dictionary pref which maps profile names to dictionary values which hold
2575 // hashes of profile prefs that we track to detect changes that happen outside 2574 // hashes of profile prefs that we track to detect changes that happen outside
2576 // of Chrome. 2575 // of Chrome.
2577 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; 2576 const char kProfilePreferenceHashes[] = "profile.preference_hashes";
2578 2577
2579 // Stores a pair of local time and corresponding network time to bootstrap 2578 // Stores a pair of local time and corresponding network time to bootstrap
2580 // network time tracker when browser starts. 2579 // network time tracker when browser starts.
2581 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; 2580 const char kNetworkTimeMapping[] = "profile.network_time_mapping";
2582 2581
2583 } // namespace prefs 2582 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | components/policy/core/common/policy_pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698