| 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 extern const char kCrossDevicePromoNumDevices[]; | 555 extern const char kCrossDevicePromoNumDevices[]; |
| 556 extern const char kCrossDevicePromoLastDeviceActiveTime[]; | 556 extern const char kCrossDevicePromoLastDeviceActiveTime[]; |
| 557 #endif | 557 #endif |
| 558 | 558 |
| 559 extern const char kWebAppCreateOnDesktop[]; | 559 extern const char kWebAppCreateOnDesktop[]; |
| 560 extern const char kWebAppCreateInAppsMenu[]; | 560 extern const char kWebAppCreateInAppsMenu[]; |
| 561 extern const char kWebAppCreateInQuickLaunchBar[]; | 561 extern const char kWebAppCreateInQuickLaunchBar[]; |
| 562 | 562 |
| 563 extern const char kGeolocationAccessToken[]; | 563 extern const char kGeolocationAccessToken[]; |
| 564 | 564 |
| 565 #if BUILDFLAG(ENABLE_GOOGLE_NOW) | |
| 566 extern const char kGoogleGeolocationAccessEnabled[]; | |
| 567 #endif | |
| 568 extern const char kGoogleNowLauncherEnabled[]; | 565 extern const char kGoogleNowLauncherEnabled[]; |
| 569 | 566 |
| 570 extern const char kDefaultAudioCaptureDevice[]; | 567 extern const char kDefaultAudioCaptureDevice[]; |
| 571 extern const char kDefaultVideoCaptureDevice[]; | 568 extern const char kDefaultVideoCaptureDevice[]; |
| 572 extern const char kMediaDeviceIdSalt[]; | 569 extern const char kMediaDeviceIdSalt[]; |
| 573 | 570 |
| 574 extern const char kPrintPreviewStickySettings[]; | 571 extern const char kPrintPreviewStickySettings[]; |
| 575 extern const char kCloudPrintRoot[]; | 572 extern const char kCloudPrintRoot[]; |
| 576 extern const char kCloudPrintProxyEnabled[]; | 573 extern const char kCloudPrintProxyEnabled[]; |
| 577 extern const char kCloudPrintProxyId[]; | 574 extern const char kCloudPrintProxyId[]; |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 #if defined(GOOGLE_CHROME_BUILD) | 798 #if defined(GOOGLE_CHROME_BUILD) |
| 802 extern const char kMediaRouterCloudServicesPrefSet[]; | 799 extern const char kMediaRouterCloudServicesPrefSet[]; |
| 803 extern const char kMediaRouterEnableCloudServices[]; | 800 extern const char kMediaRouterEnableCloudServices[]; |
| 804 #endif // defined(GOOGLE_CHROME_BUILD) | 801 #endif // defined(GOOGLE_CHROME_BUILD) |
| 805 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 802 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 806 #endif | 803 #endif |
| 807 | 804 |
| 808 } // namespace prefs | 805 } // namespace prefs |
| 809 | 806 |
| 810 #endif // CHROME_COMMON_PREF_NAMES_H_ | 807 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |