| 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 1956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1967 const char kPerformanceTracingEnabled[] = | 1967 const char kPerformanceTracingEnabled[] = |
| 1968 "feedback.performance_tracing_enabled"; | 1968 "feedback.performance_tracing_enabled"; |
| 1969 | 1969 |
| 1970 // Boolean indicating whether tabstrip uses stacked layout (on touch devices). | 1970 // Boolean indicating whether tabstrip uses stacked layout (on touch devices). |
| 1971 // Defaults to false. | 1971 // Defaults to false. |
| 1972 const char kTabStripStackedLayout[] = "tab-strip-stacked-layout"; | 1972 const char kTabStripStackedLayout[] = "tab-strip-stacked-layout"; |
| 1973 | 1973 |
| 1974 // Indicates that factory reset was requested from options page or reset screen. | 1974 // Indicates that factory reset was requested from options page or reset screen. |
| 1975 const char kFactoryResetRequested[] = "FactoryResetRequested"; | 1975 const char kFactoryResetRequested[] = "FactoryResetRequested"; |
| 1976 | 1976 |
| 1977 // Indicates that rollback was requested alongside with factory reset. | |
| 1978 // Makes sense only if kFactoryResetRequested is true. | |
| 1979 const char kRollbackRequested[] = "RollbackRequested"; | |
| 1980 | |
| 1981 // Boolean recording whether we have showed a balloon that calls out the message | 1977 // Boolean recording whether we have showed a balloon that calls out the message |
| 1982 // center for desktop notifications. | 1978 // center for desktop notifications. |
| 1983 const char kMessageCenterShowedFirstRunBalloon[] = | 1979 const char kMessageCenterShowedFirstRunBalloon[] = |
| 1984 "message_center.showed_first_run_balloon"; | 1980 "message_center.showed_first_run_balloon"; |
| 1985 | 1981 |
| 1986 // Boolean recording whether the user has disabled the notifications | 1982 // Boolean recording whether the user has disabled the notifications |
| 1987 // menubar or systray icon. | 1983 // menubar or systray icon. |
| 1988 const char kMessageCenterShowIcon[] = "message_center.show_icon"; | 1984 const char kMessageCenterShowIcon[] = "message_center.show_icon"; |
| 1989 | 1985 |
| 1990 const char kMessageCenterForcedOnTaskbar[] = | 1986 const char kMessageCenterForcedOnTaskbar[] = |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2336 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2332 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2337 #endif | 2333 #endif |
| 2338 | 2334 |
| 2339 // Whether DNS Quick Check is disabled in proxy resolution. | 2335 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2340 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2336 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2341 | 2337 |
| 2342 // Whether Guest Mode is enabled within the browser. | 2338 // Whether Guest Mode is enabled within the browser. |
| 2343 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2339 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
| 2344 | 2340 |
| 2345 } // namespace prefs | 2341 } // namespace prefs |
| OLD | NEW |