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 debugging features were requested from oobe screen. |
| 1978 const char kDebuggingFeaturesRequested[] = "DebuggingFeaturesRequested"; |
| 1979 |
1977 // Boolean recording whether we have showed a balloon that calls out the message | 1980 // Boolean recording whether we have showed a balloon that calls out the message |
1978 // center for desktop notifications. | 1981 // center for desktop notifications. |
1979 const char kMessageCenterShowedFirstRunBalloon[] = | 1982 const char kMessageCenterShowedFirstRunBalloon[] = |
1980 "message_center.showed_first_run_balloon"; | 1983 "message_center.showed_first_run_balloon"; |
1981 | 1984 |
1982 // Boolean recording whether the user has disabled the notifications | 1985 // Boolean recording whether the user has disabled the notifications |
1983 // menubar or systray icon. | 1986 // menubar or systray icon. |
1984 const char kMessageCenterShowIcon[] = "message_center.show_icon"; | 1987 const char kMessageCenterShowIcon[] = "message_center.show_icon"; |
1985 | 1988 |
1986 const char kMessageCenterForcedOnTaskbar[] = | 1989 const char kMessageCenterForcedOnTaskbar[] = |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2283 // bubble. | 2286 // bubble. |
2284 const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; | 2287 const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; |
2285 | 2288 |
2286 // The count of user's "Nope" for the password bubble. | 2289 // The count of user's "Nope" for the password bubble. |
2287 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2290 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2288 | 2291 |
2289 // Last user's interaction with the password bubble. | 2292 // Last user's interaction with the password bubble. |
2290 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2293 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2291 | 2294 |
2292 } // namespace prefs | 2295 } // namespace prefs |
OLD | NEW |