| 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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 | 688 |
| 689 #if defined(OS_CHROMEOS) | 689 #if defined(OS_CHROMEOS) |
| 690 extern const char kResolveDeviceTimezoneByGeolocation[]; | 690 extern const char kResolveDeviceTimezoneByGeolocation[]; |
| 691 #endif // defined(OS_CHROMEOS) | 691 #endif // defined(OS_CHROMEOS) |
| 692 | 692 |
| 693 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 693 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 694 extern const char kAttemptedToEnableAutoupdate[]; | 694 extern const char kAttemptedToEnableAutoupdate[]; |
| 695 | 695 |
| 696 extern const char kMediaGalleriesUniqueId[]; | 696 extern const char kMediaGalleriesUniqueId[]; |
| 697 extern const char kMediaGalleriesRememberedGalleries[]; | 697 extern const char kMediaGalleriesRememberedGalleries[]; |
| 698 extern const char kMediaGalleriesLastScanTime[]; | |
| 699 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) | 698 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) |
| 700 | 699 |
| 701 #if defined(USE_ASH) | 700 #if defined(USE_ASH) |
| 702 extern const char kShelfAlignment[]; | 701 extern const char kShelfAlignment[]; |
| 703 extern const char kShelfAlignmentLocal[]; | 702 extern const char kShelfAlignmentLocal[]; |
| 704 extern const char kShelfAutoHideBehavior[]; | 703 extern const char kShelfAutoHideBehavior[]; |
| 705 extern const char kShelfAutoHideBehaviorLocal[]; | 704 extern const char kShelfAutoHideBehaviorLocal[]; |
| 706 extern const char kShelfChromeIconIndex[]; | 705 extern const char kShelfChromeIconIndex[]; |
| 707 extern const char kShelfPreferences[]; | 706 extern const char kShelfPreferences[]; |
| 708 | 707 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 #if defined(GOOGLE_CHROME_BUILD) | 800 #if defined(GOOGLE_CHROME_BUILD) |
| 802 extern const char kMediaRouterCloudServicesPrefSet[]; | 801 extern const char kMediaRouterCloudServicesPrefSet[]; |
| 803 extern const char kMediaRouterEnableCloudServices[]; | 802 extern const char kMediaRouterEnableCloudServices[]; |
| 804 #endif // defined(GOOGLE_CHROME_BUILD) | 803 #endif // defined(GOOGLE_CHROME_BUILD) |
| 805 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 804 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 806 #endif | 805 #endif |
| 807 | 806 |
| 808 } // namespace prefs | 807 } // namespace prefs |
| 809 | 808 |
| 810 #endif // CHROME_COMMON_PREF_NAMES_H_ | 809 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |