| 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 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1570 // Create web application shortcut dialog preferences. | 1570 // Create web application shortcut dialog preferences. |
| 1571 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; | 1571 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; |
| 1572 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; | 1572 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; |
| 1573 const char kWebAppCreateInQuickLaunchBar[] = | 1573 const char kWebAppCreateInQuickLaunchBar[] = |
| 1574 "browser.web_app.create_in_quick_launch_bar"; | 1574 "browser.web_app.create_in_quick_launch_bar"; |
| 1575 | 1575 |
| 1576 // Dictionary that maps Geolocation network provider server URLs to | 1576 // Dictionary that maps Geolocation network provider server URLs to |
| 1577 // corresponding access token. | 1577 // corresponding access token. |
| 1578 const char kGeolocationAccessToken[] = "geolocation.access_token"; | 1578 const char kGeolocationAccessToken[] = "geolocation.access_token"; |
| 1579 | 1579 |
| 1580 #if BUILDFLAG(ENABLE_GOOGLE_NOW) | |
| 1581 // Boolean that is true when Google services can use the user's location. | |
| 1582 const char kGoogleGeolocationAccessEnabled[] = | |
| 1583 "googlegeolocationaccess.enabled"; | |
| 1584 #endif | |
| 1585 | |
| 1586 // Boolean that specifies whether to enable the Google Now Launcher extension. | 1580 // Boolean that specifies whether to enable the Google Now Launcher extension. |
| 1587 // Note: This is not the notifications component gated by ENABLE_GOOGLE_NOW. | 1581 // Note: This is not the notifications component gated by ENABLE_GOOGLE_NOW. |
| 1588 const char kGoogleNowLauncherEnabled[] = "google_now_launcher.enabled"; | 1582 const char kGoogleNowLauncherEnabled[] = "google_now_launcher.enabled"; |
| 1589 | 1583 |
| 1590 // The default audio capture device used by the Media content setting. | 1584 // The default audio capture device used by the Media content setting. |
| 1591 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; | 1585 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; |
| 1592 | 1586 |
| 1593 // The default video capture device used by the Media content setting. | 1587 // The default video capture device used by the Media content setting. |
| 1594 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; | 1588 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; |
| 1595 | 1589 |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2179 const char kMediaRouterEnableCloudServices[] = | 2173 const char kMediaRouterEnableCloudServices[] = |
| 2180 "media_router.cloudservices.enabled"; | 2174 "media_router.cloudservices.enabled"; |
| 2181 #endif // defined(GOOGLE_CHROME_BUILD) | 2175 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2182 // 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 |
| 2183 // user. | 2177 // user. |
| 2184 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2178 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2185 "media_router.firstrunflow.acknowledged"; | 2179 "media_router.firstrunflow.acknowledged"; |
| 2186 #endif | 2180 #endif |
| 2187 | 2181 |
| 2188 } // namespace prefs | 2182 } // namespace prefs |
| OLD | NEW |