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

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

Issue 2143893002: Purge the App Launcher code from Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 4 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
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/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 2058 matching lines...) Expand 10 before | Expand all | Expand 10 after
2069 const char kAppLauncherHasBeenEnabled[] = 2069 const char kAppLauncherHasBeenEnabled[] =
2070 "apps.app_launcher.has_been_enabled"; 2070 "apps.app_launcher.has_been_enabled";
2071 2071
2072 // An enum indicating how the app launcher was enabled. E.g., via webstore, app 2072 // An enum indicating how the app launcher was enabled. E.g., via webstore, app
2073 // install, command line, etc. For UMA. 2073 // install, command line, etc. For UMA.
2074 const char kAppListEnableMethod[] = "app_list.how_enabled"; 2074 const char kAppListEnableMethod[] = "app_list.how_enabled";
2075 2075
2076 // The time that the app launcher was enabled. Cleared when UMA is recorded. 2076 // The time that the app launcher was enabled. Cleared when UMA is recorded.
2077 const char kAppListEnableTime[] = "app_list.when_enabled"; 2077 const char kAppListEnableTime[] = "app_list.when_enabled";
2078 2078
2079 // The last time the app list was launched.
2080 const char kAppListLastLaunchTime[] = "app_list.last_launch";
2081
2082 #if defined(OS_MACOSX) 2079 #if defined(OS_MACOSX)
2083 // Integer representing the version of the app launcher shortcut installed on 2080 // Integer representing the version of the app launcher shortcut installed on
2084 // the system. Incremented, e.g., when embedded icons change. 2081 // the system. Incremented, e.g., when embedded icons change.
2085 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; 2082 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version";
2086 #endif 2083 #endif
2087 2084
2088 // A boolean identifying if we should show the app launcher promo or not. 2085 // A boolean identifying if we should show the app launcher promo or not.
2089 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; 2086 const char kShowAppLauncherPromo[] = "app_launcher.show_promo";
2090 2087
2091 // A dictionary that tracks the Drive app to Chrome app mapping. The key is 2088 // A dictionary that tracks the Drive app to Chrome app mapping. The key is
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
2242 #endif 2239 #endif
2243 2240
2244 // The base64-encoded representation of the public key to use to validate origin 2241 // The base64-encoded representation of the public key to use to validate origin
2245 // trial token signatures. 2242 // trial token signatures.
2246 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; 2243 const char kOriginTrialPublicKey[] = "origin_trials.public_key";
2247 2244
2248 // A list of origin trial features to disable by policy. 2245 // A list of origin trial features to disable by policy.
2249 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; 2246 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features";
2250 2247
2251 } // namespace prefs 2248 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698