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

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: Fix browser test 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
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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 const char kVariationsSeedDate[] = "variations_seed_date"; 1332 const char kVariationsSeedDate[] = "variations_seed_date";
1333 1333
1334 // Where profile specific metrics are placed. 1334 // Where profile specific metrics are placed.
1335 const char kProfileMetrics[] = "user_experience_metrics.profiles"; 1335 const char kProfileMetrics[] = "user_experience_metrics.profiles";
1336 1336
1337 // The metrics for a profile are stored as dictionary values under the 1337 // The metrics for a profile are stored as dictionary values under the
1338 // path kProfileMetrics. The individual metrics are placed under the path 1338 // path kProfileMetrics. The individual metrics are placed under the path
1339 // kProfileMetrics.kProfilePrefix<hashed-profile-id>. 1339 // kProfileMetrics.kProfilePrefix<hashed-profile-id>.
1340 const char kProfilePrefix[] = "profile-"; 1340 const char kProfilePrefix[] = "profile-";
1341 1341
1342 // Reset Profile Data dialog preferences
1343 const char kResetDefaultSearchEngine[] =
1344 "browser.reset_profile_settings.default_search_engine";
1345 const char kResetHomepage[] = "browser.reset_profile_settings.homepage";
1346 const char kResetContentSettings[] =
1347 "browser.reset_profile_settings.content_settings";
1348 const char kResetCookiesAndSiteData[] =
1349 "browser.reset_profile_settings.cookies_and_site_data";
1350 const char kResetExtensions[] = "browser.reset_profile_settings.extensions";
1351 const char kResetExtensionsHandling[] =
1352 "browser.reset_profile_settings.extensions_handling";
1353
1342 // True if the previous run of the program exited cleanly. 1354 // True if the previous run of the program exited cleanly.
1343 const char kStabilityExitedCleanly[] = 1355 const char kStabilityExitedCleanly[] =
1344 "user_experience_metrics.stability.exited_cleanly"; 1356 "user_experience_metrics.stability.exited_cleanly";
1345 1357
1346 // Version string of previous run, which is used to assure that stability 1358 // Version string of previous run, which is used to assure that stability
1347 // metrics reported under current version reflect stability of the same version. 1359 // metrics reported under current version reflect stability of the same version.
1348 const char kStabilityStatsVersion[] = 1360 const char kStabilityStatsVersion[] =
1349 "user_experience_metrics.stability.stats_version"; 1361 "user_experience_metrics.stability.stats_version";
1350 1362
1351 // Build time, in seconds since an epoch, which is used to assure that stability 1363 // Build time, in seconds since an epoch, which is used to assure that stability
(...skipping 1089 matching lines...) Expand 10 before | Expand all | Expand 10 after
2441 // ping and the time of the last ping. 2453 // ping and the time of the last ping.
2442 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; 2454 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count";
2443 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; 2455 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping";
2444 2456
2445 // A string pref for storing the salt used to compute the pepper device ID. 2457 // A string pref for storing the salt used to compute the pepper device ID.
2446 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2458 const char kDRMSalt[] = "settings.privacy.drm_salt";
2447 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2459 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2448 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2460 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2449 2461
2450 } // namespace prefs 2462 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698