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

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

Issue 14066011: Move kEulaAccepted pref name to chrome/common/pref_names.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
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 | 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) 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 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1234 const char kProfileInfoCache[] = "profile.info_cache"; 1234 const char kProfileInfoCache[] = "profile.info_cache";
1235 1235
1236 // Prefs for SSLConfigServicePref. 1236 // Prefs for SSLConfigServicePref.
1237 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; 1237 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled";
1238 const char kSSLVersionMin[] = "ssl.version_min"; 1238 const char kSSLVersionMin[] = "ssl.version_min";
1239 const char kSSLVersionMax[] = "ssl.version_max"; 1239 const char kSSLVersionMax[] = "ssl.version_max";
1240 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; 1240 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist";
1241 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; 1241 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled";
1242 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; 1242 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled";
1243 1243
1244 // A boolean pref of the EULA accepted flag.
1245 const char kEulaAccepted[] = "EulaAccepted";
1246
1244 // The metrics client GUID, entropy source and session ID. 1247 // The metrics client GUID, entropy source and session ID.
1245 const char kMetricsClientID[] = "user_experience_metrics.client_id"; 1248 const char kMetricsClientID[] = "user_experience_metrics.client_id";
1246 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; 1249 const char kMetricsSessionID[] = "user_experience_metrics.session_id";
1247 const char kMetricsLowEntropySource[] = 1250 const char kMetricsLowEntropySource[] =
1248 "user_experience_metrics.low_entropy_source"; 1251 "user_experience_metrics.low_entropy_source";
1249 1252
1250 // Date/time when the current metrics profile ID was created 1253 // Date/time when the current metrics profile ID was created
1251 // (which hopefully corresponds to first run). 1254 // (which hopefully corresponds to first run).
1252 const char kMetricsClientIDTimestamp[] = 1255 const char kMetricsClientIDTimestamp[] =
1253 "user_experience_metrics.client_id_timestamp"; 1256 "user_experience_metrics.client_id_timestamp";
(...skipping 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after
2388 // the time of the last ping. 2391 // the time of the last ping.
2389 extern const char kAppListLaunchCount[] = "app_list.launch_count"; 2392 extern const char kAppListLaunchCount[] = "app_list.launch_count";
2390 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; 2393 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping";
2391 2394
2392 // The number of times the an app was launched from the app launcher since last 2395 // The number of times the an app was launched from the app launcher since last
2393 // ping and the time of the last ping. 2396 // ping and the time of the last ping.
2394 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; 2397 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count";
2395 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; 2398 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping";
2396 2399
2397 } // namespace prefs 2400 } // 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