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 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 extern const char kToolbarMigratedComponentActionStatus[]; | 441 extern const char kToolbarMigratedComponentActionStatus[]; |
442 #endif | 442 #endif |
443 | 443 |
444 #if defined(ENABLE_WEBRTC) | 444 #if defined(ENABLE_WEBRTC) |
445 extern const char kWebRTCMultipleRoutesEnabled[]; | 445 extern const char kWebRTCMultipleRoutesEnabled[]; |
446 extern const char kWebRTCNonProxiedUdpEnabled[]; | 446 extern const char kWebRTCNonProxiedUdpEnabled[]; |
447 extern const char kWebRTCIPHandlingPolicy[]; | 447 extern const char kWebRTCIPHandlingPolicy[]; |
448 extern const char kWebRTCUDPPortRange[]; | 448 extern const char kWebRTCUDPPortRange[]; |
449 #endif | 449 #endif |
450 | 450 |
| 451 #if !defined(OS_ANDROID) |
| 452 extern const char kHasSeenWelcomePage[]; |
| 453 #endif |
| 454 |
451 extern const char kGLVendorString[]; | 455 extern const char kGLVendorString[]; |
452 extern const char kGLRendererString[]; | 456 extern const char kGLRendererString[]; |
453 extern const char kGLVersionString[]; | 457 extern const char kGLVersionString[]; |
454 | 458 |
455 #if defined(OS_ANDROID) | 459 #if defined(OS_ANDROID) |
456 extern const char kGLExtensionsString[]; | 460 extern const char kGLExtensionsString[]; |
457 extern const char kGpuDriverInfoMaxSamples[]; | 461 extern const char kGpuDriverInfoMaxSamples[]; |
458 extern const char kGpuDriverInfoResetNotificationStrategy[]; | 462 extern const char kGpuDriverInfoResetNotificationStrategy[]; |
459 extern const char kGpuDriverInfoShaderVersion[]; | 463 extern const char kGpuDriverInfoShaderVersion[]; |
460 extern const char kGpuDriverInfoBuildFingerPrint[]; | 464 extern const char kGpuDriverInfoBuildFingerPrint[]; |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 | 849 |
846 #if defined(OS_ANDROID) | 850 #if defined(OS_ANDROID) |
847 extern const char kSearchGeolocationDisclosureDismissed[]; | 851 extern const char kSearchGeolocationDisclosureDismissed[]; |
848 extern const char kSearchGeolocationDisclosureShownCount[]; | 852 extern const char kSearchGeolocationDisclosureShownCount[]; |
849 extern const char kSearchGeolocationDisclosureLastShowDate[]; | 853 extern const char kSearchGeolocationDisclosureLastShowDate[]; |
850 #endif | 854 #endif |
851 | 855 |
852 } // namespace prefs | 856 } // namespace prefs |
853 | 857 |
854 #endif // CHROME_COMMON_PREF_NAMES_H_ | 858 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |