| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 extern const char kPluginsShowDetails[]; | 254 extern const char kPluginsShowDetails[]; |
| 255 extern const char kPluginsAllowOutdated[]; | 255 extern const char kPluginsAllowOutdated[]; |
| 256 extern const char kPluginsAlwaysAuthorize[]; | 256 extern const char kPluginsAlwaysAuthorize[]; |
| 257 extern const char kCheckDefaultBrowser[]; | 257 extern const char kCheckDefaultBrowser[]; |
| 258 extern const char kDefaultBrowserSettingEnabled[]; | 258 extern const char kDefaultBrowserSettingEnabled[]; |
| 259 #if defined(OS_MACOSX) | 259 #if defined(OS_MACOSX) |
| 260 extern const char kShowUpdatePromotionInfoBar[]; | 260 extern const char kShowUpdatePromotionInfoBar[]; |
| 261 #endif | 261 #endif |
| 262 extern const char kUseCustomChromeFrame[]; | 262 extern const char kUseCustomChromeFrame[]; |
| 263 extern const char kShowOmniboxSearchHint[]; | 263 extern const char kShowOmniboxSearchHint[]; |
| 264 extern const char kDesktopNotificationDefaultContentSetting[]; // OBSOLETE | 264 extern const char kDesktopNotificationDefaultContentSetting[]; |
| 265 extern const char kDesktopNotificationAllowedOrigins[]; // OBSOLETE | 265 extern const char kDesktopNotificationAllowedOrigins[]; |
| 266 extern const char kDesktopNotificationDeniedOrigins[]; // OBSOLETE | 266 extern const char kDesktopNotificationDeniedOrigins[]; |
| 267 extern const char kDesktopNotificationPosition[]; | 267 extern const char kDesktopNotificationPosition[]; |
| 268 extern const char kDefaultContentSettings[]; | 268 extern const char kDefaultContentSettings[]; |
| 269 extern const char kPerHostContentSettings[]; // OBSOLETE | 269 extern const char kPerHostContentSettings[]; // OBSOLETE |
| 270 extern const char kContentSettingsVersion[]; | 270 extern const char kContentSettingsVersion[]; |
| 271 extern const char kContentSettingsPatterns[]; // OBSOLETE | 271 extern const char kContentSettingsPatterns[]; // OBSOLETE |
| 272 extern const char kContentSettingsPatternPairs[]; | 272 extern const char kContentSettingsPatternPairs[]; |
| 273 extern const char kBlockThirdPartyCookies[]; | 273 extern const char kBlockThirdPartyCookies[]; |
| 274 extern const char kClearSiteDataOnExit[]; | 274 extern const char kClearSiteDataOnExit[]; |
| 275 extern const char kDefaultZoomLevel[]; | 275 extern const char kDefaultZoomLevel[]; |
| 276 extern const char kPerHostZoomLevels[]; | 276 extern const char kPerHostZoomLevels[]; |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 | 585 |
| 586 extern const char kUserCreatedLoginItem[]; | 586 extern const char kUserCreatedLoginItem[]; |
| 587 extern const char kBackgroundModeEnabled[]; | 587 extern const char kBackgroundModeEnabled[]; |
| 588 | 588 |
| 589 extern const char kDevicePolicyRefreshRate[]; | 589 extern const char kDevicePolicyRefreshRate[]; |
| 590 extern const char kUserPolicyRefreshRate[]; | 590 extern const char kUserPolicyRefreshRate[]; |
| 591 | 591 |
| 592 } // namespace prefs | 592 } // namespace prefs |
| 593 | 593 |
| 594 #endif // CHROME_COMMON_PREF_NAMES_H_ | 594 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |