| 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 2144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2155 const char kAllowDinosaurEasterEgg[] = | 2155 const char kAllowDinosaurEasterEgg[] = |
| 2156 "allow_dinosaur_easter_egg"; | 2156 "allow_dinosaur_easter_egg"; |
| 2157 | 2157 |
| 2158 #if defined(OS_ANDROID) | 2158 #if defined(OS_ANDROID) |
| 2159 // Whether the update menu item was clicked. Used to facilitate logging whether | 2159 // Whether the update menu item was clicked. Used to facilitate logging whether |
| 2160 // Chrome was updated after the menu item is clicked. | 2160 // Chrome was updated after the menu item is clicked. |
| 2161 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; | 2161 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; |
| 2162 #endif | 2162 #endif |
| 2163 | 2163 |
| 2164 #if defined(ENABLE_MEDIA_ROUTER) | 2164 #if defined(ENABLE_MEDIA_ROUTER) |
| 2165 // Whether or not the user has explicitly set the cloud services preference |
| 2166 // through the first run flow. |
| 2167 const char kMediaRouterCloudServicesPrefSet[] = |
| 2168 "media_router.cloudservices.prefset"; |
| 2169 // Whether or not the user has enabled cloud services with Media Router. |
| 2170 const char kMediaRouterEnableCloudServices[] = |
| 2171 "media_router.cloudservices.enabled"; |
| 2165 // Whether or not the Media Router first run flow has been acknowledged by the | 2172 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2166 // user. | 2173 // user. |
| 2167 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2174 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2168 "media_router.firstrunflow.acknowledged"; | 2175 "media_router.firstrunflow.acknowledged"; |
| 2169 #endif | 2176 #endif |
| 2170 | 2177 |
| 2171 } // namespace prefs | 2178 } // namespace prefs |
| OLD | NEW |