| 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 |
| 11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| 12 | 12 |
| 13 namespace prefs { | 13 namespace prefs { |
| 14 | 14 |
| 15 // Profile prefs | 15 // Profile prefs |
| 16 extern const char kAppsPromoCounter[]; |
| 17 extern const char kDefaultAppsInstalled[]; |
| 16 extern const char kHomePageIsNewTabPage[]; | 18 extern const char kHomePageIsNewTabPage[]; |
| 17 extern const char kHomePage[]; | 19 extern const char kHomePage[]; |
| 18 extern const char kSessionExitedCleanly[]; | 20 extern const char kSessionExitedCleanly[]; |
| 19 extern const char kRestoreOnStartup[]; | 21 extern const char kRestoreOnStartup[]; |
| 20 extern const char kURLsToRestoreOnStartup[]; | 22 extern const char kURLsToRestoreOnStartup[]; |
| 21 extern const char kApplicationLocale[]; | 23 extern const char kApplicationLocale[]; |
| 22 extern const char kDefaultCharset[]; | 24 extern const char kDefaultCharset[]; |
| 23 extern const char kAcceptLanguages[]; | 25 extern const char kAcceptLanguages[]; |
| 24 extern const char kStaticEncodings[]; | 26 extern const char kStaticEncodings[]; |
| 25 extern const char kPopupWhitelistedHosts[]; | 27 extern const char kPopupWhitelistedHosts[]; |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 extern const char kProxyAutoDetect[]; | 383 extern const char kProxyAutoDetect[]; |
| 382 extern const char kProxyServer[]; | 384 extern const char kProxyServer[]; |
| 383 extern const char kProxyPacUrl[]; | 385 extern const char kProxyPacUrl[]; |
| 384 extern const char kProxyBypassList[]; | 386 extern const char kProxyBypassList[]; |
| 385 | 387 |
| 386 extern const char kRegisteredBackgroundContents[]; | 388 extern const char kRegisteredBackgroundContents[]; |
| 387 | 389 |
| 388 } // namespace prefs | 390 } // namespace prefs |
| 389 | 391 |
| 390 #endif // CHROME_COMMON_PREF_NAMES_H_ | 392 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |