| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 #if defined(OS_MACOSX) | 112 #if defined(OS_MACOSX) |
| 113 extern const wchar_t kShowUpdatePromotionInfoBar[]; | 113 extern const wchar_t kShowUpdatePromotionInfoBar[]; |
| 114 #endif | 114 #endif |
| 115 extern const wchar_t kUseCustomChromeFrame[]; | 115 extern const wchar_t kUseCustomChromeFrame[]; |
| 116 extern const wchar_t kShowOmniboxSearchHint[]; | 116 extern const wchar_t kShowOmniboxSearchHint[]; |
| 117 extern const wchar_t kNTPPromoLineRemaining[]; | 117 extern const wchar_t kNTPPromoLineRemaining[]; |
| 118 extern const wchar_t kNTPPromoImageRemaining[]; | 118 extern const wchar_t kNTPPromoImageRemaining[]; |
| 119 extern const wchar_t kDesktopNotificationAllowedOrigins[]; | 119 extern const wchar_t kDesktopNotificationAllowedOrigins[]; |
| 120 extern const wchar_t kDesktopNotificationDeniedOrigins[]; | 120 extern const wchar_t kDesktopNotificationDeniedOrigins[]; |
| 121 extern const wchar_t kPerHostZoomLevels[]; | 121 extern const wchar_t kPerHostZoomLevels[]; |
| 122 extern const wchar_t kAutoFillInfoBarShown[]; |
| 123 extern const wchar_t kAutoFillEnabled[]; |
| 122 | 124 |
| 123 // Local state | 125 // Local state |
| 124 extern const wchar_t kMetricsClientID[]; | 126 extern const wchar_t kMetricsClientID[]; |
| 125 extern const wchar_t kMetricsSessionID[]; | 127 extern const wchar_t kMetricsSessionID[]; |
| 126 extern const wchar_t kMetricsClientIDTimestamp[]; | 128 extern const wchar_t kMetricsClientIDTimestamp[]; |
| 127 extern const wchar_t kMetricsReportingEnabled[]; | 129 extern const wchar_t kMetricsReportingEnabled[]; |
| 128 extern const wchar_t kMetricsInitialLogs[]; | 130 extern const wchar_t kMetricsInitialLogs[]; |
| 129 extern const wchar_t kMetricsOngoingLogs[]; | 131 extern const wchar_t kMetricsOngoingLogs[]; |
| 130 | 132 |
| 131 extern const wchar_t kProfileMetrics[]; | 133 extern const wchar_t kProfileMetrics[]; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 extern const wchar_t kSyncLastSyncedTime[]; | 232 extern const wchar_t kSyncLastSyncedTime[]; |
| 231 extern const wchar_t kSyncHasSetupCompleted[]; | 233 extern const wchar_t kSyncHasSetupCompleted[]; |
| 232 | 234 |
| 233 extern const wchar_t kWebAppCreateOnDesktop[]; | 235 extern const wchar_t kWebAppCreateOnDesktop[]; |
| 234 extern const wchar_t kWebAppCreateInAppsMenu[]; | 236 extern const wchar_t kWebAppCreateInAppsMenu[]; |
| 235 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; | 237 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; |
| 236 | 238 |
| 237 } // namespace prefs | 239 } // namespace prefs |
| 238 | 240 |
| 239 #endif // CHROME_COMMON_PREF_NAMES_H_ | 241 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |