| 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 1949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1960 const char kAttemptedToEnableAutoupdate[] = | 1960 const char kAttemptedToEnableAutoupdate[] = |
| 1961 "browser.attempted_to_enable_autoupdate"; | 1961 "browser.attempted_to_enable_autoupdate"; |
| 1962 | 1962 |
| 1963 // The next media gallery ID to assign. | 1963 // The next media gallery ID to assign. |
| 1964 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; | 1964 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; |
| 1965 | 1965 |
| 1966 // A list of dictionaries, where each dictionary represents a known media | 1966 // A list of dictionaries, where each dictionary represents a known media |
| 1967 // gallery. | 1967 // gallery. |
| 1968 const char kMediaGalleriesRememberedGalleries[] = | 1968 const char kMediaGalleriesRememberedGalleries[] = |
| 1969 "media_galleries.remembered_galleries"; | 1969 "media_galleries.remembered_galleries"; |
| 1970 | |
| 1971 // The last time a media scan completed. | |
| 1972 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; | |
| 1973 #endif // !defined(OS_ANDROID) | 1970 #endif // !defined(OS_ANDROID) |
| 1974 | 1971 |
| 1975 #if defined(USE_ASH) | 1972 #if defined(USE_ASH) |
| 1976 // |kShelfAlignment| and |kShelfAutoHideBehavior| have a local variant. The | 1973 // |kShelfAlignment| and |kShelfAutoHideBehavior| have a local variant. The |
| 1977 // local variant is not synced and is used if set. If the local variant is not | 1974 // local variant is not synced and is used if set. If the local variant is not |
| 1978 // set its value is set from the synced value (once prefs have been | 1975 // set its value is set from the synced value (once prefs have been |
| 1979 // synced). This gives a per-machine setting that is initialized from the last | 1976 // synced). This gives a per-machine setting that is initialized from the last |
| 1980 // set value. | 1977 // set value. |
| 1981 // These values are default on the machine but can be overridden by per-display | 1978 // These values are default on the machine but can be overridden by per-display |
| 1982 // values in kShelfPreferences (unless overridden by managed policy). | 1979 // values in kShelfPreferences (unless overridden by managed policy). |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2176 const char kMediaRouterEnableCloudServices[] = | 2173 const char kMediaRouterEnableCloudServices[] = |
| 2177 "media_router.cloudservices.enabled"; | 2174 "media_router.cloudservices.enabled"; |
| 2178 #endif // defined(GOOGLE_CHROME_BUILD) | 2175 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2179 // Whether or not the Media Router first run flow has been acknowledged by the | 2176 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2180 // user. | 2177 // user. |
| 2181 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2178 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2182 "media_router.firstrunflow.acknowledged"; | 2179 "media_router.firstrunflow.acknowledged"; |
| 2183 #endif | 2180 #endif |
| 2184 | 2181 |
| 2185 } // namespace prefs | 2182 } // namespace prefs |
| OLD | NEW |