OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 extern const wchar_t kNTPPromoImageRemaining[]; | 119 extern const wchar_t kNTPPromoImageRemaining[]; |
120 extern const wchar_t kDesktopNotificationAllowedOrigins[]; | 120 extern const wchar_t kDesktopNotificationAllowedOrigins[]; |
121 extern const wchar_t kDesktopNotificationDeniedOrigins[]; | 121 extern const wchar_t kDesktopNotificationDeniedOrigins[]; |
122 extern const wchar_t kDefaultContentSettings[]; | 122 extern const wchar_t kDefaultContentSettings[]; |
123 extern const wchar_t kPerHostContentSettings[]; | 123 extern const wchar_t kPerHostContentSettings[]; |
124 extern const wchar_t kBlockThirdPartyCookies[]; | 124 extern const wchar_t kBlockThirdPartyCookies[]; |
125 extern const wchar_t kClearSiteDataOnExit[]; | 125 extern const wchar_t kClearSiteDataOnExit[]; |
126 extern const wchar_t kPerHostZoomLevels[]; | 126 extern const wchar_t kPerHostZoomLevels[]; |
127 extern const wchar_t kAutoFillInfoBarShown[]; | 127 extern const wchar_t kAutoFillInfoBarShown[]; |
128 extern const wchar_t kAutoFillEnabled[]; | 128 extern const wchar_t kAutoFillEnabled[]; |
| 129 extern const wchar_t kAutoFillAuxiliaryProfilesEnabled[]; |
129 extern const wchar_t kAutoFillDialogPlacement[]; | 130 extern const wchar_t kAutoFillDialogPlacement[]; |
130 extern const wchar_t kPrivacyFilterRules[]; | 131 extern const wchar_t kPrivacyFilterRules[]; |
131 extern const wchar_t kUseVerticalTabs[]; | 132 extern const wchar_t kUseVerticalTabs[]; |
132 extern const wchar_t kEnableTranslate[]; | 133 extern const wchar_t kEnableTranslate[]; |
133 | 134 |
134 // Local state | 135 // Local state |
135 extern const wchar_t kMetricsClientID[]; | 136 extern const wchar_t kMetricsClientID[]; |
136 extern const wchar_t kMetricsSessionID[]; | 137 extern const wchar_t kMetricsSessionID[]; |
137 extern const wchar_t kMetricsClientIDTimestamp[]; | 138 extern const wchar_t kMetricsClientIDTimestamp[]; |
138 extern const wchar_t kMetricsReportingEnabled[]; | 139 extern const wchar_t kMetricsReportingEnabled[]; |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 | 248 |
248 extern const wchar_t kWebAppCreateOnDesktop[]; | 249 extern const wchar_t kWebAppCreateOnDesktop[]; |
249 extern const wchar_t kWebAppCreateInAppsMenu[]; | 250 extern const wchar_t kWebAppCreateInAppsMenu[]; |
250 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; | 251 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; |
251 | 252 |
252 extern const wchar_t kGeolocationAccessToken[]; | 253 extern const wchar_t kGeolocationAccessToken[]; |
253 | 254 |
254 } // namespace prefs | 255 } // namespace prefs |
255 | 256 |
256 #endif // CHROME_COMMON_PREF_NAMES_H_ | 257 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |