| 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 extern const char kWebRTCMultipleRoutesEnabled[]; | 446 extern const char kWebRTCMultipleRoutesEnabled[]; |
| 447 extern const char kWebRTCNonProxiedUdpEnabled[]; | 447 extern const char kWebRTCNonProxiedUdpEnabled[]; |
| 448 extern const char kWebRTCIPHandlingPolicy[]; | 448 extern const char kWebRTCIPHandlingPolicy[]; |
| 449 extern const char kWebRTCUDPPortRange[]; | 449 extern const char kWebRTCUDPPortRange[]; |
| 450 #endif | 450 #endif |
| 451 | 451 |
| 452 #if !defined(OS_ANDROID) | 452 #if !defined(OS_ANDROID) |
| 453 extern const char kHasSeenWelcomePage[]; | 453 extern const char kHasSeenWelcomePage[]; |
| 454 #endif | 454 #endif |
| 455 | 455 |
| 456 #if defined(OS_WIN) |
| 457 extern const char kHasSeenWin10PromoPage[]; |
| 458 #endif |
| 459 |
| 456 extern const char kGLVendorString[]; | 460 extern const char kGLVendorString[]; |
| 457 extern const char kGLRendererString[]; | 461 extern const char kGLRendererString[]; |
| 458 extern const char kGLVersionString[]; | 462 extern const char kGLVersionString[]; |
| 459 | 463 |
| 460 #if defined(OS_ANDROID) | 464 #if defined(OS_ANDROID) |
| 461 extern const char kGLExtensionsString[]; | 465 extern const char kGLExtensionsString[]; |
| 462 extern const char kGpuDriverInfoMaxSamples[]; | 466 extern const char kGpuDriverInfoMaxSamples[]; |
| 463 extern const char kGpuDriverInfoResetNotificationStrategy[]; | 467 extern const char kGpuDriverInfoResetNotificationStrategy[]; |
| 464 extern const char kGpuDriverInfoShaderVersion[]; | 468 extern const char kGpuDriverInfoShaderVersion[]; |
| 465 extern const char kGpuDriverInfoBuildFingerPrint[]; | 469 extern const char kGpuDriverInfoBuildFingerPrint[]; |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 extern const char kSearchGeolocationDisclosureDismissed[]; | 856 extern const char kSearchGeolocationDisclosureDismissed[]; |
| 853 extern const char kSearchGeolocationDisclosureShownCount[]; | 857 extern const char kSearchGeolocationDisclosureShownCount[]; |
| 854 extern const char kSearchGeolocationDisclosureLastShowDate[]; | 858 extern const char kSearchGeolocationDisclosureLastShowDate[]; |
| 855 extern const char kSearchGeolocationPreDisclosureMetricsRecorded[]; | 859 extern const char kSearchGeolocationPreDisclosureMetricsRecorded[]; |
| 856 extern const char kSearchGeolocationPostDisclosureMetricsRecorded[]; | 860 extern const char kSearchGeolocationPostDisclosureMetricsRecorded[]; |
| 857 #endif | 861 #endif |
| 858 | 862 |
| 859 } // namespace prefs | 863 } // namespace prefs |
| 860 | 864 |
| 861 #endif // CHROME_COMMON_PREF_NAMES_H_ | 865 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |