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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 extern const wchar_t kContentSettingsPatterns[]; | 173 extern const wchar_t kContentSettingsPatterns[]; |
174 extern const wchar_t kBlockThirdPartyCookies[]; | 174 extern const wchar_t kBlockThirdPartyCookies[]; |
175 extern const wchar_t kClearSiteDataOnExit[]; | 175 extern const wchar_t kClearSiteDataOnExit[]; |
176 extern const wchar_t kPerHostZoomLevels[]; | 176 extern const wchar_t kPerHostZoomLevels[]; |
177 extern const wchar_t kAutoFillEnabled[]; | 177 extern const wchar_t kAutoFillEnabled[]; |
178 extern const wchar_t kAutoFillAuxiliaryProfilesEnabled[]; | 178 extern const wchar_t kAutoFillAuxiliaryProfilesEnabled[]; |
179 extern const wchar_t kAutoFillDialogPlacement[]; | 179 extern const wchar_t kAutoFillDialogPlacement[]; |
180 extern const wchar_t kAutoFillPositiveUploadRate[]; | 180 extern const wchar_t kAutoFillPositiveUploadRate[]; |
181 extern const wchar_t kAutoFillNegativeUploadRate[]; | 181 extern const wchar_t kAutoFillNegativeUploadRate[]; |
182 | 182 |
183 extern const wchar_t kPrivacyFilterRules[]; | |
184 extern const wchar_t kUseVerticalTabs[]; | 183 extern const wchar_t kUseVerticalTabs[]; |
185 extern const wchar_t kEnableTranslate[]; | 184 extern const wchar_t kEnableTranslate[]; |
186 extern const wchar_t kPinnedTabs[]; | 185 extern const wchar_t kPinnedTabs[]; |
187 | 186 |
188 // Local state | 187 // Local state |
189 extern const wchar_t kMetricsClientID[]; | 188 extern const wchar_t kMetricsClientID[]; |
190 extern const wchar_t kMetricsSessionID[]; | 189 extern const wchar_t kMetricsSessionID[]; |
191 extern const wchar_t kMetricsClientIDTimestamp[]; | 190 extern const wchar_t kMetricsClientIDTimestamp[]; |
192 extern const wchar_t kMetricsReportingEnabled[]; | 191 extern const wchar_t kMetricsReportingEnabled[]; |
193 extern const wchar_t kMetricsInitialLogs[]; | 192 extern const wchar_t kMetricsInitialLogs[]; |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 extern const wchar_t kProxyAutoDetect[]; | 336 extern const wchar_t kProxyAutoDetect[]; |
338 extern const wchar_t kProxyServer[]; | 337 extern const wchar_t kProxyServer[]; |
339 extern const wchar_t kProxyPacUrl[]; | 338 extern const wchar_t kProxyPacUrl[]; |
340 extern const wchar_t kProxyBypassList[]; | 339 extern const wchar_t kProxyBypassList[]; |
341 | 340 |
342 extern const wchar_t kRegisteredBackgroundContents[]; | 341 extern const wchar_t kRegisteredBackgroundContents[]; |
343 | 342 |
344 } // namespace prefs | 343 } // namespace prefs |
345 | 344 |
346 #endif // CHROME_COMMON_PREF_NAMES_H_ | 345 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |