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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/features.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
9 | 10 |
10 namespace prefs { | 11 namespace prefs { |
11 | 12 |
12 // *************** PROFILE PREFS *************** | 13 // *************** PROFILE PREFS *************** |
13 // These are attached to the user profile | 14 // These are attached to the user profile |
14 | 15 |
15 | 16 |
16 // A bool pref that keeps whether the child status for this profile was already | 17 // A bool pref that keeps whether the child status for this profile was already |
17 // successfully checked via ChildAccountService. | 18 // successfully checked via ChildAccountService. |
(...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1550 | 1551 |
1551 // Dictionary that maps Geolocation network provider server URLs to | 1552 // Dictionary that maps Geolocation network provider server URLs to |
1552 // corresponding access token. | 1553 // corresponding access token. |
1553 const char kGeolocationAccessToken[] = "geolocation.access_token"; | 1554 const char kGeolocationAccessToken[] = "geolocation.access_token"; |
1554 | 1555 |
1555 #if defined(OS_ANDROID) | 1556 #if defined(OS_ANDROID) |
1556 // Boolean that controls the enabled-state of Geolocation in content. | 1557 // Boolean that controls the enabled-state of Geolocation in content. |
1557 const char kGeolocationEnabled[] = "geolocation.enabled"; | 1558 const char kGeolocationEnabled[] = "geolocation.enabled"; |
1558 #endif | 1559 #endif |
1559 | 1560 |
1560 #if defined(ENABLE_GOOGLE_NOW) | 1561 #if BUILDFLAG(ENABLE_GOOGLE_NOW) |
1561 // Boolean that is true when Google services can use the user's location. | 1562 // Boolean that is true when Google services can use the user's location. |
1562 const char kGoogleGeolocationAccessEnabled[] = | 1563 const char kGoogleGeolocationAccessEnabled[] = |
1563 "googlegeolocationaccess.enabled"; | 1564 "googlegeolocationaccess.enabled"; |
1564 #endif | 1565 #endif |
1565 | 1566 |
1566 // Boolean that specifies whether to enable the Google Now Launcher extension. | 1567 // Boolean that specifies whether to enable the Google Now Launcher extension. |
1567 // Note: This is not the notifications component gated by ENABLE_GOOGLE_NOW. | 1568 // Note: This is not the notifications component gated by ENABLE_GOOGLE_NOW. |
1568 const char kGoogleNowLauncherEnabled[] = "google_now_launcher.enabled"; | 1569 const char kGoogleNowLauncherEnabled[] = "google_now_launcher.enabled"; |
1569 | 1570 |
1570 // The default audio capture device used by the Media content setting. | 1571 // The default audio capture device used by the Media content setting. |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2171 // Policy that indicates how to handle animated images. | 2172 // Policy that indicates how to handle animated images. |
2172 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2173 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2173 #endif | 2174 #endif |
2174 | 2175 |
2175 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2176 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2176 | 2177 |
2177 const char kAllowDinosaurEasterEgg[] = | 2178 const char kAllowDinosaurEasterEgg[] = |
2178 "allow_dinosaur_easter_egg"; | 2179 "allow_dinosaur_easter_egg"; |
2179 | 2180 |
2180 } // namespace prefs | 2181 } // namespace prefs |
OLD | NEW |