OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 #endif | 105 #endif |
106 extern const wchar_t kCurrentThemeID[]; | 106 extern const wchar_t kCurrentThemeID[]; |
107 extern const wchar_t kCurrentThemeImages[]; | 107 extern const wchar_t kCurrentThemeImages[]; |
108 extern const wchar_t kCurrentThemeColors[]; | 108 extern const wchar_t kCurrentThemeColors[]; |
109 extern const wchar_t kCurrentThemeTints[]; | 109 extern const wchar_t kCurrentThemeTints[]; |
110 extern const wchar_t kCurrentThemeDisplayProperties[]; | 110 extern const wchar_t kCurrentThemeDisplayProperties[]; |
111 extern const wchar_t kCheckDefaultBrowser[]; | 111 extern const wchar_t kCheckDefaultBrowser[]; |
112 extern const wchar_t kUseCustomChromeFrame[]; | 112 extern const wchar_t kUseCustomChromeFrame[]; |
113 extern const wchar_t kShowOmniboxSearchHint[]; | 113 extern const wchar_t kShowOmniboxSearchHint[]; |
114 extern const wchar_t kNTPThemePromoRemaining[]; | 114 extern const wchar_t kNTPThemePromoRemaining[]; |
| 115 extern const wchar_t kDesktopNotificationAllowedOrigins[]; |
| 116 extern const wchar_t kDesktopNotificationDeniedOrigins[]; |
115 | 117 |
116 // Local state | 118 // Local state |
117 extern const wchar_t kMetricsClientID[]; | 119 extern const wchar_t kMetricsClientID[]; |
118 extern const wchar_t kMetricsSessionID[]; | 120 extern const wchar_t kMetricsSessionID[]; |
119 extern const wchar_t kMetricsClientIDTimestamp[]; | 121 extern const wchar_t kMetricsClientIDTimestamp[]; |
120 extern const wchar_t kMetricsReportingEnabled[]; | 122 extern const wchar_t kMetricsReportingEnabled[]; |
121 extern const wchar_t kMetricsInitialLogs[]; | 123 extern const wchar_t kMetricsInitialLogs[]; |
122 extern const wchar_t kMetricsOngoingLogs[]; | 124 extern const wchar_t kMetricsOngoingLogs[]; |
123 | 125 |
124 extern const wchar_t kProfileMetrics[]; | 126 extern const wchar_t kProfileMetrics[]; |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 extern const wchar_t kNTPShownSections[]; | 221 extern const wchar_t kNTPShownSections[]; |
220 | 222 |
221 extern const wchar_t kDevToolsOpenDocked[]; | 223 extern const wchar_t kDevToolsOpenDocked[]; |
222 extern const wchar_t kDevToolsSplitLocation[]; | 224 extern const wchar_t kDevToolsSplitLocation[]; |
223 | 225 |
224 extern const wchar_t kSyncLastSyncedTime[]; | 226 extern const wchar_t kSyncLastSyncedTime[]; |
225 extern const wchar_t kSyncHasSetupCompleted[]; | 227 extern const wchar_t kSyncHasSetupCompleted[]; |
226 } | 228 } |
227 | 229 |
228 #endif // CHROME_COMMON_PREF_NAMES_H_ | 230 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |