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

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

Issue 14924002: WebUI for Profile Settings Reset (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 7 years, 7 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 1322 matching lines...) Expand 10 before | Expand all | Expand 10 after
1333 const char kVariationsSeedDate[] = "variations_seed_date"; 1333 const char kVariationsSeedDate[] = "variations_seed_date";
1334 1334
1335 // Where profile specific metrics are placed. 1335 // Where profile specific metrics are placed.
1336 const char kProfileMetrics[] = "user_experience_metrics.profiles"; 1336 const char kProfileMetrics[] = "user_experience_metrics.profiles";
1337 1337
1338 // The metrics for a profile are stored as dictionary values under the 1338 // The metrics for a profile are stored as dictionary values under the
1339 // path kProfileMetrics. The individual metrics are placed under the path 1339 // path kProfileMetrics. The individual metrics are placed under the path
1340 // kProfileMetrics.kProfilePrefix<hashed-profile-id>. 1340 // kProfileMetrics.kProfilePrefix<hashed-profile-id>.
1341 const char kProfilePrefix[] = "profile-"; 1341 const char kProfilePrefix[] = "profile-";
1342 1342
1343 // Reset Profile Data dialog preferences
1344 const char kResetDefaultSearchEngine[] =
1345 "browser.reset_profile_settings.default_search_engine";
1346 const char kResetHomepage[] = "browser.reset_profile_settings.homepage";
1347 const char kResetContentSettings[] =
1348 "browser.reset_profile_settings.content_settings";
1349 const char kResetCookiesAndSiteData[] =
1350 "browser.reset_profile_settings.cookies_and_site_data";
1351 const char kResetExtensions[] = "browser.reset_profile_settings.extensions";
1352 const char kResetExtensionsHandling[] =
1353 "browser.reset_profile_settings.extensions_handling";
1354
1343 // True if the previous run of the program exited cleanly. 1355 // True if the previous run of the program exited cleanly.
1344 const char kStabilityExitedCleanly[] = 1356 const char kStabilityExitedCleanly[] =
1345 "user_experience_metrics.stability.exited_cleanly"; 1357 "user_experience_metrics.stability.exited_cleanly";
1346 1358
1347 // Version string of previous run, which is used to assure that stability 1359 // Version string of previous run, which is used to assure that stability
1348 // metrics reported under current version reflect stability of the same version. 1360 // metrics reported under current version reflect stability of the same version.
1349 const char kStabilityStatsVersion[] = 1361 const char kStabilityStatsVersion[] =
1350 "user_experience_metrics.stability.stats_version"; 1362 "user_experience_metrics.stability.stats_version";
1351 1363
1352 // Build time, in seconds since an epoch, which is used to assure that stability 1364 // Build time, in seconds since an epoch, which is used to assure that stability
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after
2456 // ping and the time of the last ping. 2468 // ping and the time of the last ping.
2457 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; 2469 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count";
2458 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; 2470 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping";
2459 2471
2460 // A string pref for storing the salt used to compute the pepper device ID. 2472 // A string pref for storing the salt used to compute the pepper device ID.
2461 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2473 const char kDRMSalt[] = "settings.privacy.drm_salt";
2462 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2474 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2463 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2475 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2464 2476
2465 } // namespace prefs 2477 } // 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