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

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

Issue 370813003: Move kInstallDate from chrome/common/pref_names.h to components/metrics/metrics_pref_names.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review:isherman Created 6 years, 5 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 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1362 // The keys below are used for the dictionaries in the 1362 // The keys below are used for the dictionaries in the
1363 // kStabilityPluginStats list. 1363 // kStabilityPluginStats list.
1364 const char kStabilityPluginName[] = "name"; 1364 const char kStabilityPluginName[] = "name";
1365 const char kStabilityPluginLaunches[] = "launches"; 1365 const char kStabilityPluginLaunches[] = "launches";
1366 const char kStabilityPluginInstances[] = "instances"; 1366 const char kStabilityPluginInstances[] = "instances";
1367 const char kStabilityPluginCrashes[] = "crashes"; 1367 const char kStabilityPluginCrashes[] = "crashes";
1368 const char kStabilityPluginLoadingErrors[] = "loading_errors"; 1368 const char kStabilityPluginLoadingErrors[] = "loading_errors";
1369 1369
1370 // The keys below are strictly increasing counters over the lifetime of 1370 // The keys below are strictly increasing counters over the lifetime of
1371 // a chrome installation. They are (optionally) sent up to the uninstall 1371 // a chrome installation. They are (optionally) sent up to the uninstall
1372 // survey in the event of uninstallation. The installation date is used by some 1372 // survey in the event of uninstallation.
1373 // opt-in services such as Wallet and UMA.
1374 const char kInstallDate[] = "uninstall_metrics.installation_date2";
1375 const char kUninstallMetricsPageLoadCount[] = 1373 const char kUninstallMetricsPageLoadCount[] =
1376 "uninstall_metrics.page_load_count"; 1374 "uninstall_metrics.page_load_count";
1377 const char kUninstallLastLaunchTimeSec[] = 1375 const char kUninstallLastLaunchTimeSec[] =
1378 "uninstall_metrics.last_launch_time_sec"; 1376 "uninstall_metrics.last_launch_time_sec";
1379 const char kUninstallLastObservedRunTimeSec[] = 1377 const char kUninstallLastObservedRunTimeSec[] =
1380 "uninstall_metrics.last_observed_running_time_sec"; 1378 "uninstall_metrics.last_observed_running_time_sec";
1381 1379
1382 // String containing the version of Chrome for which Chrome will not prompt the 1380 // String containing the version of Chrome for which Chrome will not prompt the
1383 // user about setting Chrome as the default browser. 1381 // user about setting Chrome as the default browser.
1384 const char kBrowserSuppressDefaultBrowserPrompt[] = 1382 const char kBrowserSuppressDefaultBrowserPrompt[] =
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after
2299 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2297 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2300 // given by the PartnerBookmarksProvider and either the user-visible renamed 2298 // given by the PartnerBookmarksProvider and either the user-visible renamed
2301 // title or an empty string if the bookmark node was removed. 2299 // title or an empty string if the bookmark node was removed.
2302 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2300 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2303 #endif 2301 #endif
2304 2302
2305 // Whether DNS Quick Check is disabled in proxy resolution. 2303 // Whether DNS Quick Check is disabled in proxy resolution.
2306 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2304 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2307 2305
2308 } // namespace prefs 2306 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698