| 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 1550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1561 // Boolean that specifies whether to enable the Google Now Launcher extension. | 1561 // Boolean that specifies whether to enable the Google Now Launcher extension. |
| 1562 // Note: This is not the notifications component gated by ENABLE_GOOGLE_NOW. | 1562 // Note: This is not the notifications component gated by ENABLE_GOOGLE_NOW. |
| 1563 const char kGoogleNowLauncherEnabled[] = "google_now_launcher.enabled"; | 1563 const char kGoogleNowLauncherEnabled[] = "google_now_launcher.enabled"; |
| 1564 | 1564 |
| 1565 // The default audio capture device used by the Media content setting. | 1565 // The default audio capture device used by the Media content setting. |
| 1566 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; | 1566 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; |
| 1567 | 1567 |
| 1568 // The default video capture device used by the Media content setting. | 1568 // The default video capture device used by the Media content setting. |
| 1569 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; | 1569 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; |
| 1570 | 1570 |
| 1571 // The salt used for creating random MediaSource IDs. | |
| 1572 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; | |
| 1573 | |
| 1574 // The last used printer and its settings. | 1571 // The last used printer and its settings. |
| 1575 const char kPrintPreviewStickySettings[] = | 1572 const char kPrintPreviewStickySettings[] = |
| 1576 "printing.print_preview_sticky_settings"; | 1573 "printing.print_preview_sticky_settings"; |
| 1577 | 1574 |
| 1578 // The list of BackgroundContents that should be loaded when the browser | 1575 // The list of BackgroundContents that should be loaded when the browser |
| 1579 // launches. | 1576 // launches. |
| 1580 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1577 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
| 1581 | 1578 |
| 1582 #if defined(OS_WIN) | 1579 #if defined(OS_WIN) |
| 1583 // The "major.minor" OS version for which the welcome page was last shown. | 1580 // The "major.minor" OS version for which the welcome page was last shown. |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2170 const char kMediaRouterEnableCloudServices[] = | 2167 const char kMediaRouterEnableCloudServices[] = |
| 2171 "media_router.cloudservices.enabled"; | 2168 "media_router.cloudservices.enabled"; |
| 2172 #endif // defined(GOOGLE_CHROME_BUILD) | 2169 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2173 // Whether or not the Media Router first run flow has been acknowledged by the | 2170 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2174 // user. | 2171 // user. |
| 2175 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2172 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2176 "media_router.firstrunflow.acknowledged"; | 2173 "media_router.firstrunflow.acknowledged"; |
| 2177 #endif | 2174 #endif |
| 2178 | 2175 |
| 2179 } // namespace prefs | 2176 } // namespace prefs |
| OLD | NEW |