| OLD | NEW |
| 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 2041 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2052 | 2052 |
| 2053 // The last time the app list was launched. | 2053 // The last time the app list was launched. |
| 2054 const char kAppListLastLaunchTime[] = "app_list.last_launch"; | 2054 const char kAppListLastLaunchTime[] = "app_list.last_launch"; |
| 2055 | 2055 |
| 2056 #if defined(OS_MACOSX) | 2056 #if defined(OS_MACOSX) |
| 2057 // Integer representing the version of the app launcher shortcut installed on | 2057 // Integer representing the version of the app launcher shortcut installed on |
| 2058 // the system. Incremented, e.g., when embedded icons change. | 2058 // the system. Incremented, e.g., when embedded icons change. |
| 2059 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; | 2059 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; |
| 2060 #endif | 2060 #endif |
| 2061 | 2061 |
| 2062 // A boolean identifying if we should show the app launcher promo or not. | |
| 2063 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; | |
| 2064 | |
| 2065 // A dictionary that tracks the Drive app to Chrome app mapping. The key is | 2062 // A dictionary that tracks the Drive app to Chrome app mapping. The key is |
| 2066 // a Drive app id and the value is the corresponding Chrome app id. The pref | 2063 // a Drive app id and the value is the corresponding Chrome app id. The pref |
| 2067 // is unsynable and used to track local mappings only. | 2064 // is unsynable and used to track local mappings only. |
| 2068 const char kAppLauncherDriveAppMapping[] = | 2065 const char kAppLauncherDriveAppMapping[] = |
| 2069 "apps.app_launcher.drive_app_mapping"; | 2066 "apps.app_launcher.drive_app_mapping"; |
| 2070 | 2067 |
| 2071 // A list of Drive app ids that tracks the uninstallable Drive apps. | 2068 // A list of Drive app ids that tracks the uninstallable Drive apps. |
| 2072 const char kAppLauncherUninstalledDriveApps[] = | 2069 const char kAppLauncherUninstalledDriveApps[] = |
| 2073 "apps.app_launcher.uninstalled_drive_apps"; | 2070 "apps.app_launcher.uninstalled_drive_apps"; |
| 2074 #endif // defined(ENABLE_APP_LIST) | 2071 #endif // defined(ENABLE_APP_LIST) |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2178 const char kMediaRouterEnableCloudServices[] = | 2175 const char kMediaRouterEnableCloudServices[] = |
| 2179 "media_router.cloudservices.enabled"; | 2176 "media_router.cloudservices.enabled"; |
| 2180 #endif // defined(GOOGLE_CHROME_BUILD) | 2177 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2181 // Whether or not the Media Router first run flow has been acknowledged by the | 2178 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2182 // user. | 2179 // user. |
| 2183 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2180 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2184 "media_router.firstrunflow.acknowledged"; | 2181 "media_router.firstrunflow.acknowledged"; |
| 2185 #endif | 2182 #endif |
| 2186 | 2183 |
| 2187 } // namespace prefs | 2184 } // namespace prefs |
| OLD | NEW |