| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 extern const char kScreenMagnifierEnabled[]; | 237 extern const char kScreenMagnifierEnabled[]; |
| 238 extern const char kVirtualKeyboardEnabled[]; | 238 extern const char kVirtualKeyboardEnabled[]; |
| 239 extern const char kLabsAdvancedFilesystemEnabled[]; | 239 extern const char kLabsAdvancedFilesystemEnabled[]; |
| 240 extern const char kLabsMediaplayerEnabled[]; | 240 extern const char kLabsMediaplayerEnabled[]; |
| 241 extern const char kEnableScreenLock[]; | 241 extern const char kEnableScreenLock[]; |
| 242 extern const char kShowPlanNotifications[]; | 242 extern const char kShowPlanNotifications[]; |
| 243 extern const char kShow3gPromoNotification[]; | 243 extern const char kShow3gPromoNotification[]; |
| 244 extern const char kUseSharedProxies[]; | 244 extern const char kUseSharedProxies[]; |
| 245 extern const char kOAuth1Token[]; | 245 extern const char kOAuth1Token[]; |
| 246 extern const char kOAuth1Secret[]; | 246 extern const char kOAuth1Secret[]; |
| 247 extern const char kEnableCrosDRM[]; |
| 247 #endif // defined(OS_CHROMEOS) | 248 #endif // defined(OS_CHROMEOS) |
| 248 extern const char kIpcDisabledMessages[]; | 249 extern const char kIpcDisabledMessages[]; |
| 249 extern const char kShowHomeButton[]; | 250 extern const char kShowHomeButton[]; |
| 250 extern const char kRecentlySelectedEncoding[]; | 251 extern const char kRecentlySelectedEncoding[]; |
| 251 extern const char kDeleteBrowsingHistory[]; | 252 extern const char kDeleteBrowsingHistory[]; |
| 252 extern const char kDeleteDownloadHistory[]; | 253 extern const char kDeleteDownloadHistory[]; |
| 253 extern const char kDeleteCache[]; | 254 extern const char kDeleteCache[]; |
| 254 extern const char kDeleteCookies[]; | 255 extern const char kDeleteCookies[]; |
| 255 extern const char kDeletePasswords[]; | 256 extern const char kDeletePasswords[]; |
| 256 extern const char kDeleteFormData[]; | 257 extern const char kDeleteFormData[]; |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 extern const char kPointsBufferedForVelocity[]; | 690 extern const char kPointsBufferedForVelocity[]; |
| 690 extern const char kRailBreakProportion[]; | 691 extern const char kRailBreakProportion[]; |
| 691 extern const char kRailStartProportion[]; | 692 extern const char kRailStartProportion[]; |
| 692 #endif | 693 #endif |
| 693 | 694 |
| 694 extern const char kInManagedMode[]; | 695 extern const char kInManagedMode[]; |
| 695 | 696 |
| 696 } // namespace prefs | 697 } // namespace prefs |
| 697 | 698 |
| 698 #endif // CHROME_COMMON_PREF_NAMES_H_ | 699 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |