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 1968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1979 const char kPerformanceTracingEnabled[] = | 1979 const char kPerformanceTracingEnabled[] = |
1980 "feedback.performance_tracing_enabled"; | 1980 "feedback.performance_tracing_enabled"; |
1981 | 1981 |
1982 // Boolean indicating whether tabstrip uses stacked layout (on touch devices). | 1982 // Boolean indicating whether tabstrip uses stacked layout (on touch devices). |
1983 // Defaults to false. | 1983 // Defaults to false. |
1984 const char kTabStripStackedLayout[] = "tab-strip-stacked-layout"; | 1984 const char kTabStripStackedLayout[] = "tab-strip-stacked-layout"; |
1985 | 1985 |
1986 // Indicates that factory reset was requested from options page or reset screen. | 1986 // Indicates that factory reset was requested from options page or reset screen. |
1987 const char kFactoryResetRequested[] = "FactoryResetRequested"; | 1987 const char kFactoryResetRequested[] = "FactoryResetRequested"; |
1988 | 1988 |
| 1989 // Indicates that debugging features were requested from oobe screen. |
| 1990 const char kDebuggingFeaturesRequested[] = "DebuggingFeaturesRequested"; |
| 1991 |
1989 // Boolean recording whether we have showed a balloon that calls out the message | 1992 // Boolean recording whether we have showed a balloon that calls out the message |
1990 // center for desktop notifications. | 1993 // center for desktop notifications. |
1991 const char kMessageCenterShowedFirstRunBalloon[] = | 1994 const char kMessageCenterShowedFirstRunBalloon[] = |
1992 "message_center.showed_first_run_balloon"; | 1995 "message_center.showed_first_run_balloon"; |
1993 | 1996 |
1994 // Boolean recording whether the user has disabled the notifications | 1997 // Boolean recording whether the user has disabled the notifications |
1995 // menubar or systray icon. | 1998 // menubar or systray icon. |
1996 const char kMessageCenterShowIcon[] = "message_center.show_icon"; | 1999 const char kMessageCenterShowIcon[] = "message_center.show_icon"; |
1997 | 2000 |
1998 const char kMessageCenterForcedOnTaskbar[] = | 2001 const char kMessageCenterForcedOnTaskbar[] = |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2338 // Whether Guest Mode is enabled within the browser. | 2341 // Whether Guest Mode is enabled within the browser. |
2339 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2342 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2340 | 2343 |
2341 // Whether Adding a new Person is enabled within the user manager. | 2344 // Whether Adding a new Person is enabled within the user manager. |
2342 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; | 2345 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; |
2343 | 2346 |
2344 // A dictionary that maps user id to hardlock state. | 2347 // A dictionary that maps user id to hardlock state. |
2345 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; | 2348 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; |
2346 | 2349 |
2347 } // namespace prefs | 2350 } // namespace prefs |
OLD | NEW |