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

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

Issue 13132004: Implement Enterprise Key API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing reviewer comments. Created 7 years, 8 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
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 2337 matching lines...) Expand 10 before | Expand all | Expand 10 after
2348 // Tracks the time of the last shown warning. Used to reset 2348 // Tracks the time of the last shown warning. Used to reset
2349 // |network_profile.warnings_left| after a silence period. 2349 // |network_profile.warnings_left| after a silence period.
2350 const char kNetworkProfileLastWarningTime[] = 2350 const char kNetworkProfileLastWarningTime[] =
2351 "network_profile.last_warning_time"; 2351 "network_profile.last_warning_time";
2352 2352
2353 // 64-bit serialization of the time last policy usage statistics were collected 2353 // 64-bit serialization of the time last policy usage statistics were collected
2354 // by UMA_HISTOGRAM_ENUMERATION. 2354 // by UMA_HISTOGRAM_ENUMERATION.
2355 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; 2355 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update";
2356 2356
2357 #if defined(OS_CHROMEOS) 2357 #if defined(OS_CHROMEOS)
2358 // Indicates whether the remote attestation is enabled for the user.
2359 const char kAttestationEnabled[] = "attestation.enabled";
2360 // The list of extensions allowed to use the enterpriseKeyPrivate API for
2361 // remote attestation.
2362 const char kAttestationExtensionWhitelist[] = "attestation.extension_whitelist";
Mattias Nissler (ping if slow) 2013/04/10 16:53:26 This is still not in the right section. People kee
davidyu 2013/04/11 07:04:21 Done.
2358 // The RLZ brand code, if enabled. 2363 // The RLZ brand code, if enabled.
2359 const char kRLZBrand[] = "rlz.brand"; 2364 const char kRLZBrand[] = "rlz.brand";
2360 // Whether RLZ pings are disabled. 2365 // Whether RLZ pings are disabled.
2361 const char kRLZDisabled[] = "rlz.disabled"; 2366 const char kRLZDisabled[] = "rlz.disabled";
2362 #endif 2367 #endif
2363 2368
2364 // The directory in user data dir that contains the profile to be used with the 2369 // The directory in user data dir that contains the profile to be used with the
2365 // app launcher. 2370 // app launcher.
2366 extern const char kAppListProfile[] = "app_list.profile"; 2371 extern const char kAppListProfile[] = "app_list.profile";
2367 2372
2368 } // namespace prefs 2373 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698