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 1938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1949 const char kPerformanceTracingEnabled[] = | 1949 const char kPerformanceTracingEnabled[] = |
1950 "feedback.performance_tracing_enabled"; | 1950 "feedback.performance_tracing_enabled"; |
1951 | 1951 |
1952 // Boolean indicating whether tabstrip uses stacked layout (on touch devices). | 1952 // Boolean indicating whether tabstrip uses stacked layout (on touch devices). |
1953 // Defaults to false. | 1953 // Defaults to false. |
1954 const char kTabStripStackedLayout[] = "tab-strip-stacked-layout"; | 1954 const char kTabStripStackedLayout[] = "tab-strip-stacked-layout"; |
1955 | 1955 |
1956 // Indicates that factory reset was requested from options page or reset screen. | 1956 // Indicates that factory reset was requested from options page or reset screen. |
1957 const char kFactoryResetRequested[] = "FactoryResetRequested"; | 1957 const char kFactoryResetRequested[] = "FactoryResetRequested"; |
1958 | 1958 |
1959 // Indicates that rollback was requested alongside with factory reset. | |
1960 // Makes sense only if kFactoryResetRequested is true. | |
1961 const char kRollbackRequested[] = "RollbackRequested"; | |
1962 | |
1963 // Boolean recording whether we have showed a balloon that calls out the message | 1959 // Boolean recording whether we have showed a balloon that calls out the message |
1964 // center for desktop notifications. | 1960 // center for desktop notifications. |
1965 const char kMessageCenterShowedFirstRunBalloon[] = | 1961 const char kMessageCenterShowedFirstRunBalloon[] = |
1966 "message_center.showed_first_run_balloon"; | 1962 "message_center.showed_first_run_balloon"; |
1967 | 1963 |
1968 // Boolean recording whether the user has disabled the notifications | 1964 // Boolean recording whether the user has disabled the notifications |
1969 // menubar or systray icon. | 1965 // menubar or systray icon. |
1970 const char kMessageCenterShowIcon[] = "message_center.show_icon"; | 1966 const char kMessageCenterShowIcon[] = "message_center.show_icon"; |
1971 | 1967 |
1972 const char kMessageCenterForcedOnTaskbar[] = | 1968 const char kMessageCenterForcedOnTaskbar[] = |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2318 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2314 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2319 #endif | 2315 #endif |
2320 | 2316 |
2321 // Whether DNS Quick Check is disabled in proxy resolution. | 2317 // Whether DNS Quick Check is disabled in proxy resolution. |
2322 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2318 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2323 | 2319 |
2324 // Whether Guest Mode is enabled within the browser. | 2320 // Whether Guest Mode is enabled within the browser. |
2325 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2321 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2326 | 2322 |
2327 } // namespace prefs | 2323 } // namespace prefs |
OLD | NEW |