| 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/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 2153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2164 #if defined(ENABLE_EXTENSIONS) | 2164 #if defined(ENABLE_EXTENSIONS) |
| 2165 // Policy that indicates how to handle animated images. | 2165 // Policy that indicates how to handle animated images. |
| 2166 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2166 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2167 #endif | 2167 #endif |
| 2168 | 2168 |
| 2169 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2169 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2170 | 2170 |
| 2171 const char kAllowDinosaurEasterEgg[] = | 2171 const char kAllowDinosaurEasterEgg[] = |
| 2172 "allow_dinosaur_easter_egg"; | 2172 "allow_dinosaur_easter_egg"; |
| 2173 | 2173 |
| 2174 #if defined(OS_ANDROID) |
| 2175 // Whether the update menu item was clicked. Used to facilitate logging whether |
| 2176 // Chrome was updated after the menu item is clicked. |
| 2177 const char kClickedUpdateMenuItem[] = "omaha.clicked_update_menu_item"; |
| 2178 #endif |
| 2179 |
| 2174 } // namespace prefs | 2180 } // namespace prefs |
| OLD | NEW |