| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 extern const wchar_t kTouchpadSpeedFactor[]; | 72 extern const wchar_t kTouchpadSpeedFactor[]; |
| 73 extern const wchar_t kTouchpadSensitivity[]; | 73 extern const wchar_t kTouchpadSensitivity[]; |
| 74 #endif | 74 #endif |
| 75 extern const wchar_t kIpcDisabledMessages[]; | 75 extern const wchar_t kIpcDisabledMessages[]; |
| 76 extern const wchar_t kShowHomeButton[]; | 76 extern const wchar_t kShowHomeButton[]; |
| 77 extern const wchar_t kShowPageOptionsButtons[]; | 77 extern const wchar_t kShowPageOptionsButtons[]; |
| 78 extern const wchar_t kRecentlySelectedEncoding[]; | 78 extern const wchar_t kRecentlySelectedEncoding[]; |
| 79 extern const wchar_t kDeleteBrowsingHistory[]; | 79 extern const wchar_t kDeleteBrowsingHistory[]; |
| 80 extern const wchar_t kDeleteDownloadHistory[]; | 80 extern const wchar_t kDeleteDownloadHistory[]; |
| 81 extern const wchar_t kDeleteCache[]; | 81 extern const wchar_t kDeleteCache[]; |
| 82 extern const wchar_t kDeleteLocalStorage[]; |
| 82 extern const wchar_t kDeleteCookies[]; | 83 extern const wchar_t kDeleteCookies[]; |
| 83 extern const wchar_t kDeletePasswords[]; | 84 extern const wchar_t kDeletePasswords[]; |
| 84 extern const wchar_t kDeleteFormData[]; | 85 extern const wchar_t kDeleteFormData[]; |
| 85 extern const wchar_t kBookmarkTableNameWidth1[]; | 86 extern const wchar_t kBookmarkTableNameWidth1[]; |
| 86 extern const wchar_t kBookmarkTableURLWidth1[]; | 87 extern const wchar_t kBookmarkTableURLWidth1[]; |
| 87 extern const wchar_t kBookmarkTableNameWidth2[]; | 88 extern const wchar_t kBookmarkTableNameWidth2[]; |
| 88 extern const wchar_t kBookmarkTableURLWidth2[]; | 89 extern const wchar_t kBookmarkTableURLWidth2[]; |
| 89 extern const wchar_t kBookmarkTablePathWidth[]; | 90 extern const wchar_t kBookmarkTablePathWidth[]; |
| 90 extern const wchar_t kBookmarkManagerPlacement[]; | 91 extern const wchar_t kBookmarkManagerPlacement[]; |
| 91 extern const wchar_t kBookmarkManagerSplitLocation[]; | 92 extern const wchar_t kBookmarkManagerSplitLocation[]; |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 extern const wchar_t kSyncLastSyncedTime[]; | 234 extern const wchar_t kSyncLastSyncedTime[]; |
| 234 extern const wchar_t kSyncHasSetupCompleted[]; | 235 extern const wchar_t kSyncHasSetupCompleted[]; |
| 235 | 236 |
| 236 extern const wchar_t kWebAppCreateOnDesktop[]; | 237 extern const wchar_t kWebAppCreateOnDesktop[]; |
| 237 extern const wchar_t kWebAppCreateInAppsMenu[]; | 238 extern const wchar_t kWebAppCreateInAppsMenu[]; |
| 238 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; | 239 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; |
| 239 | 240 |
| 240 } // namespace prefs | 241 } // namespace prefs |
| 241 | 242 |
| 242 #endif // CHROME_COMMON_PREF_NAMES_H_ | 243 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |