| 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 extern const char kWebRTCMultipleRoutesEnabled[]; | 451 extern const char kWebRTCMultipleRoutesEnabled[]; |
| 452 extern const char kWebRTCNonProxiedUdpEnabled[]; | 452 extern const char kWebRTCNonProxiedUdpEnabled[]; |
| 453 extern const char kWebRTCIPHandlingPolicy[]; | 453 extern const char kWebRTCIPHandlingPolicy[]; |
| 454 extern const char kWebRTCUDPPortRange[]; | 454 extern const char kWebRTCUDPPortRange[]; |
| 455 #endif | 455 #endif |
| 456 | 456 |
| 457 #if !defined(OS_ANDROID) | 457 #if !defined(OS_ANDROID) |
| 458 extern const char kHasSeenWelcomePage[]; | 458 extern const char kHasSeenWelcomePage[]; |
| 459 #endif | 459 #endif |
| 460 | 460 |
| 461 #if defined(OS_WIN) |
| 462 extern const char kHasSeenWin10PromoPage[]; |
| 463 #endif |
| 464 |
| 461 extern const char kGLVendorString[]; | 465 extern const char kGLVendorString[]; |
| 462 extern const char kGLRendererString[]; | 466 extern const char kGLRendererString[]; |
| 463 extern const char kGLVersionString[]; | 467 extern const char kGLVersionString[]; |
| 464 | 468 |
| 465 #if defined(OS_ANDROID) | 469 #if defined(OS_ANDROID) |
| 466 extern const char kGLExtensionsString[]; | 470 extern const char kGLExtensionsString[]; |
| 467 extern const char kGpuDriverInfoMaxSamples[]; | 471 extern const char kGpuDriverInfoMaxSamples[]; |
| 468 extern const char kGpuDriverInfoResetNotificationStrategy[]; | 472 extern const char kGpuDriverInfoResetNotificationStrategy[]; |
| 469 extern const char kGpuDriverInfoShaderVersion[]; | 473 extern const char kGpuDriverInfoShaderVersion[]; |
| 470 extern const char kGpuDriverInfoBuildFingerPrint[]; | 474 extern const char kGpuDriverInfoBuildFingerPrint[]; |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 extern const char kSearchGeolocationDisclosureDismissed[]; | 863 extern const char kSearchGeolocationDisclosureDismissed[]; |
| 860 extern const char kSearchGeolocationDisclosureShownCount[]; | 864 extern const char kSearchGeolocationDisclosureShownCount[]; |
| 861 extern const char kSearchGeolocationDisclosureLastShowDate[]; | 865 extern const char kSearchGeolocationDisclosureLastShowDate[]; |
| 862 extern const char kSearchGeolocationPreDisclosureMetricsRecorded[]; | 866 extern const char kSearchGeolocationPreDisclosureMetricsRecorded[]; |
| 863 extern const char kSearchGeolocationPostDisclosureMetricsRecorded[]; | 867 extern const char kSearchGeolocationPostDisclosureMetricsRecorded[]; |
| 864 #endif | 868 #endif |
| 865 | 869 |
| 866 } // namespace prefs | 870 } // namespace prefs |
| 867 | 871 |
| 868 #endif // CHROME_COMMON_PREF_NAMES_H_ | 872 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |