| 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/basictypes.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 10 |
| 10 namespace prefs { | 11 namespace prefs { |
| 11 | 12 |
| 12 // *************** PROFILE PREFS *************** | 13 // *************** PROFILE PREFS *************** |
| 13 // These are attached to the user profile | 14 // These are attached to the user profile |
| 14 | 15 |
| 15 #if defined(OS_CHROMEOS) && defined(ENABLE_APP_LIST) | 16 #if defined(OS_CHROMEOS) && defined(ENABLE_APP_LIST) |
| 16 // A preference to keep list of ARC apps and its state. | 17 // A preference to keep list of ARC apps and its state. |
| 17 const char kArcApps[] = "arc.apps"; | 18 const char kArcApps[] = "arc.apps"; |
| (...skipping 2150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2168 const char kAllowDinosaurEasterEgg[] = | 2169 const char kAllowDinosaurEasterEgg[] = |
| 2169 "allow_dinosaur_easter_egg"; | 2170 "allow_dinosaur_easter_egg"; |
| 2170 | 2171 |
| 2171 #if defined(OS_ANDROID) | 2172 #if defined(OS_ANDROID) |
| 2172 // Whether the update menu item was clicked. Used to facilitate logging whether | 2173 // Whether the update menu item was clicked. Used to facilitate logging whether |
| 2173 // Chrome was updated after the menu item is clicked. | 2174 // Chrome was updated after the menu item is clicked. |
| 2174 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; | 2175 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; |
| 2175 #endif | 2176 #endif |
| 2176 | 2177 |
| 2177 } // namespace prefs | 2178 } // namespace prefs |
| OLD | NEW |