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

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: 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 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after
1390 // kStabilityPluginStats list. 1390 // kStabilityPluginStats list.
1391 const char kStabilityPluginName[] = "name"; 1391 const char kStabilityPluginName[] = "name";
1392 const char kStabilityPluginLaunches[] = "launches"; 1392 const char kStabilityPluginLaunches[] = "launches";
1393 const char kStabilityPluginInstances[] = "instances"; 1393 const char kStabilityPluginInstances[] = "instances";
1394 const char kStabilityPluginCrashes[] = "crashes"; 1394 const char kStabilityPluginCrashes[] = "crashes";
1395 const char kStabilityPluginLoadingErrors[] = "loading_errors"; 1395 const char kStabilityPluginLoadingErrors[] = "loading_errors";
1396 1396
1397 // The keys below are strictly increasing counters over the lifetime of 1397 // The keys below are strictly increasing counters over the lifetime of
1398 // a chrome installation. They are (optionally) sent up to the uninstall 1398 // a chrome installation. They are (optionally) sent up to the uninstall
1399 // survey in the event of uninstallation. The installation date is used by some 1399 // survey in the event of uninstallation. The installation date is used by some
1400 // opt-in services such as Wallet and UMA. 1400 // opt-in services such as Wallet and UMA.
Ilya Sherman 2014/07/08 03:26:33 nit: Please update this comment.
gab 2014/07/08 17:41:02 Done.
1401 const char kInstallDate[] = "uninstall_metrics.installation_date2";
1402 const char kUninstallMetricsPageLoadCount[] = 1401 const char kUninstallMetricsPageLoadCount[] =
1403 "uninstall_metrics.page_load_count"; 1402 "uninstall_metrics.page_load_count";
1404 const char kUninstallLastLaunchTimeSec[] = 1403 const char kUninstallLastLaunchTimeSec[] =
1405 "uninstall_metrics.last_launch_time_sec"; 1404 "uninstall_metrics.last_launch_time_sec";
1406 const char kUninstallLastObservedRunTimeSec[] = 1405 const char kUninstallLastObservedRunTimeSec[] =
1407 "uninstall_metrics.last_observed_running_time_sec"; 1406 "uninstall_metrics.last_observed_running_time_sec";
1408 1407
1409 // String containing the version of Chrome for which Chrome will not prompt the 1408 // String containing the version of Chrome for which Chrome will not prompt the
1410 // user about setting Chrome as the default browser. 1409 // user about setting Chrome as the default browser.
1411 const char kBrowserSuppressDefaultBrowserPrompt[] = 1410 const char kBrowserSuppressDefaultBrowserPrompt[] =
(...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after
2330 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2329 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2331 // given by the PartnerBookmarksProvider and either the user-visible renamed 2330 // given by the PartnerBookmarksProvider and either the user-visible renamed
2332 // title or an empty string if the bookmark node was removed. 2331 // title or an empty string if the bookmark node was removed.
2333 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2332 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2334 #endif 2333 #endif
2335 2334
2336 // Whether DNS Quick Check is disabled in proxy resolution. 2335 // Whether DNS Quick Check is disabled in proxy resolution.
2337 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2336 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2338 2337
2339 } // namespace prefs 2338 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698