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

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

Issue 23653044: Move prefs::kLastPolicyStatisticsUpdate to the policy component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 3 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.gypi » ('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 2445 matching lines...) Expand 10 before | Expand all | Expand 10 after
2456 #endif 2456 #endif
2457 2457
2458 // Counts how many more times the 'profile on a network share' warning should be 2458 // Counts how many more times the 'profile on a network share' warning should be
2459 // shown to the user before the next silence period. 2459 // shown to the user before the next silence period.
2460 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; 2460 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
2461 // Tracks the time of the last shown warning. Used to reset 2461 // Tracks the time of the last shown warning. Used to reset
2462 // |network_profile.warnings_left| after a silence period. 2462 // |network_profile.warnings_left| after a silence period.
2463 const char kNetworkProfileLastWarningTime[] = 2463 const char kNetworkProfileLastWarningTime[] =
2464 "network_profile.last_warning_time"; 2464 "network_profile.last_warning_time";
2465 2465
2466 // 64-bit serialization of the time last policy usage statistics were collected
2467 // by UMA_HISTOGRAM_ENUMERATION.
2468 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update";
2469
2470 #if defined(OS_CHROMEOS) 2466 #if defined(OS_CHROMEOS)
2471 // The RLZ brand code, if enabled. 2467 // The RLZ brand code, if enabled.
2472 const char kRLZBrand[] = "rlz.brand"; 2468 const char kRLZBrand[] = "rlz.brand";
2473 // Whether RLZ pings are disabled. 2469 // Whether RLZ pings are disabled.
2474 const char kRLZDisabled[] = "rlz.disabled"; 2470 const char kRLZDisabled[] = "rlz.disabled";
2475 #endif 2471 #endif
2476 2472
2477 // The directory in user data dir that contains the profile to be used with the 2473 // The directory in user data dir that contains the profile to be used with the
2478 // app launcher. 2474 // app launcher.
2479 extern const char kAppListProfile[] = "app_list.profile"; 2475 extern const char kAppListProfile[] = "app_list.profile";
(...skipping 26 matching lines...) Expand all
2506 // ActivityLog initialization before the extension system is initialized. 2502 // ActivityLog initialization before the extension system is initialized.
2507 const char kWatchdogExtensionActive[] = 2503 const char kWatchdogExtensionActive[] =
2508 "profile.extensions.activity_log.watchdog_extension_active"; 2504 "profile.extensions.activity_log.watchdog_extension_active";
2509 2505
2510 // A dictionary pref which maps profile names to dictionary values which hold 2506 // A dictionary pref which maps profile names to dictionary values which hold
2511 // hashes of profile prefs that we track to detect changes that happen outside 2507 // hashes of profile prefs that we track to detect changes that happen outside
2512 // of Chrome. 2508 // of Chrome.
2513 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; 2509 const char kProfilePreferenceHashes[] = "profile.preference_hashes";
2514 2510
2515 } // namespace prefs 2511 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | components/policy.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698