| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 extern const char kNTPMostVisitedURLsBlacklist[]; | 311 extern const char kNTPMostVisitedURLsBlacklist[]; |
| 312 extern const char kNTPMostVisitedPinnedURLs[]; | 312 extern const char kNTPMostVisitedPinnedURLs[]; |
| 313 extern const char kNTPTipsCache[]; | 313 extern const char kNTPTipsCache[]; |
| 314 extern const char kNTPTipsCacheUpdate[]; | 314 extern const char kNTPTipsCacheUpdate[]; |
| 315 extern const char kNTPTipsServer[]; | 315 extern const char kNTPTipsServer[]; |
| 316 extern const char kNTPShownSections[]; | 316 extern const char kNTPShownSections[]; |
| 317 extern const char kNTPPrefVersion[]; | 317 extern const char kNTPPrefVersion[]; |
| 318 | 318 |
| 319 extern const char kDevToolsOpenDocked[]; | 319 extern const char kDevToolsOpenDocked[]; |
| 320 extern const char kDevToolsSplitLocation[]; | 320 extern const char kDevToolsSplitLocation[]; |
| 321 extern const char kSyncSessions[]; |
| 321 | 322 |
| 322 extern const char kSyncLastSyncedTime[]; | 323 extern const char kSyncLastSyncedTime[]; |
| 323 extern const char kSyncHasSetupCompleted[]; | 324 extern const char kSyncHasSetupCompleted[]; |
| 324 extern const char kKeepEverythingSynced[]; | 325 extern const char kKeepEverythingSynced[]; |
| 325 extern const char kSyncBookmarks[]; | 326 extern const char kSyncBookmarks[]; |
| 326 extern const char kSyncPasswords[]; | 327 extern const char kSyncPasswords[]; |
| 327 extern const char kSyncPreferences[]; | 328 extern const char kSyncPreferences[]; |
| 328 extern const char kSyncApps[]; | 329 extern const char kSyncApps[]; |
| 329 extern const char kSyncAutofill[]; | 330 extern const char kSyncAutofill[]; |
| 330 extern const char kSyncThemes[]; | 331 extern const char kSyncThemes[]; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 354 extern const char kProxyAutoDetect[]; | 355 extern const char kProxyAutoDetect[]; |
| 355 extern const char kProxyServer[]; | 356 extern const char kProxyServer[]; |
| 356 extern const char kProxyPacUrl[]; | 357 extern const char kProxyPacUrl[]; |
| 357 extern const char kProxyBypassList[]; | 358 extern const char kProxyBypassList[]; |
| 358 | 359 |
| 359 extern const char kRegisteredBackgroundContents[]; | 360 extern const char kRegisteredBackgroundContents[]; |
| 360 | 361 |
| 361 } // namespace prefs | 362 } // namespace prefs |
| 362 | 363 |
| 363 #endif // CHROME_COMMON_PREF_NAMES_H_ | 364 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |