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