| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 extern const char kSaveFileType[]; | 342 extern const char kSaveFileType[]; |
| 343 | 343 |
| 344 extern const char kAllowFileSelectionDialogs[]; | 344 extern const char kAllowFileSelectionDialogs[]; |
| 345 | 345 |
| 346 extern const char kSelectFileLastDirectory[]; | 346 extern const char kSelectFileLastDirectory[]; |
| 347 | 347 |
| 348 extern const char kHungPluginDetectFrequency[]; | 348 extern const char kHungPluginDetectFrequency[]; |
| 349 extern const char kPluginMessageResponseTimeout[]; | 349 extern const char kPluginMessageResponseTimeout[]; |
| 350 | 350 |
| 351 extern const char kSpellCheckDictionary[]; | 351 extern const char kSpellCheckDictionary[]; |
| 352 #if defined(GOOGLE_CHROME_BUILD) |
| 353 extern const char kSpellCheckUseSpellingService[]; |
| 354 #endif |
| 352 | 355 |
| 353 extern const char kExcludedSchemes[]; | 356 extern const char kExcludedSchemes[]; |
| 354 | 357 |
| 355 extern const char kSafeBrowsingClientKey[]; | 358 extern const char kSafeBrowsingClientKey[]; |
| 356 extern const char kSafeBrowsingWrappedKey[]; | 359 extern const char kSafeBrowsingWrappedKey[]; |
| 357 | 360 |
| 358 extern const char kOptionsWindowLastTabIndex[]; | 361 extern const char kOptionsWindowLastTabIndex[]; |
| 359 extern const char kContentSettingsWindowLastTabIndex[]; | 362 extern const char kContentSettingsWindowLastTabIndex[]; |
| 360 extern const char kCertificateManagerWindowLastTabIndex[]; | 363 extern const char kCertificateManagerWindowLastTabIndex[]; |
| 361 extern const char kShouldShowFirstRunBubble[]; | 364 extern const char kShouldShowFirstRunBubble[]; |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 | 546 |
| 544 extern const char kUserCreatedLoginItem[]; | 547 extern const char kUserCreatedLoginItem[]; |
| 545 extern const char kBackgroundModeEnabled[]; | 548 extern const char kBackgroundModeEnabled[]; |
| 546 | 549 |
| 547 extern const char kDevicePolicyRefreshRate[]; | 550 extern const char kDevicePolicyRefreshRate[]; |
| 548 extern const char kUserPolicyRefreshRate[]; | 551 extern const char kUserPolicyRefreshRate[]; |
| 549 | 552 |
| 550 } // namespace prefs | 553 } // namespace prefs |
| 551 | 554 |
| 552 #endif // CHROME_COMMON_PREF_NAMES_H_ | 555 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |