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

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: 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 2347 matching lines...) Expand 10 before | Expand all | Expand 10 after
2358 // The RLZ brand code, if enabled. 2358 // The RLZ brand code, if enabled.
2359 const char kRLZBrand[] = "rlz.brand"; 2359 const char kRLZBrand[] = "rlz.brand";
2360 // Whether RLZ pings are disabled. 2360 // Whether RLZ pings are disabled.
2361 const char kRLZDisabled[] = "rlz.disabled"; 2361 const char kRLZDisabled[] = "rlz.disabled";
2362 #endif 2362 #endif
2363 2363
2364 // The directory in user data dir that contains the profile to be used with the 2364 // The directory in user data dir that contains the profile to be used with the
2365 // app launcher. 2365 // app launcher.
2366 extern const char kAppListProfile[] = "app_list.profile"; 2366 extern const char kAppListProfile[] = "app_list.profile";
2367 2367
2368 #if defined(OS_CHROMEOS)
Mattias Nissler (ping if slow) 2013/04/04 12:51:34 This should be added to the relevant section of th
davidyu 2013/04/09 09:30:08 Done.
2369 // Indicates whether the remote attestation is enabled for the user.
2370 const char kAttestationEnabled[] = "attestation.enabled";
2371 // Indicates whether the remote attestation is enabled for the user.
Mattias Nissler (ping if slow) 2013/04/04 12:51:34 fix comment
davidyu 2013/04/09 09:30:08 Done.
2372 const char kAttestationExtensionWhitelist[] = "attestation.extension_whitelist";
2373 #endif
2374
2368 } // namespace prefs 2375 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698