| 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/browser/chrome_content_browser_client.h" | 5 #include "chrome/browser/chrome_content_browser_client.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 1707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1718 #endif | 1718 #endif |
| 1719 autofill::switches::kDisablePasswordGeneration, | 1719 autofill::switches::kDisablePasswordGeneration, |
| 1720 autofill::switches::kEnablePasswordGeneration, | 1720 autofill::switches::kEnablePasswordGeneration, |
| 1721 autofill::switches::kEnableSingleClickAutofill, | 1721 autofill::switches::kEnableSingleClickAutofill, |
| 1722 autofill::switches::kEnableSuggestionsWithSubstringMatch, | 1722 autofill::switches::kEnableSuggestionsWithSubstringMatch, |
| 1723 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1723 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
| 1724 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1724 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
| 1725 #if BUILDFLAG(ENABLE_EXTENSIONS) | 1725 #if BUILDFLAG(ENABLE_EXTENSIONS) |
| 1726 extensions::switches::kAllowHTTPBackgroundPage, | 1726 extensions::switches::kAllowHTTPBackgroundPage, |
| 1727 extensions::switches::kAllowLegacyExtensionManifests, | 1727 extensions::switches::kAllowLegacyExtensionManifests, |
| 1728 extensions::switches::kEnableAppWindowControls, | |
| 1729 extensions::switches::kEnableEmbeddedExtensionOptions, | 1728 extensions::switches::kEnableEmbeddedExtensionOptions, |
| 1730 extensions::switches::kEnableExperimentalExtensionApis, | 1729 extensions::switches::kEnableExperimentalExtensionApis, |
| 1731 extensions::switches::kExtensionsOnChromeURLs, | 1730 extensions::switches::kExtensionsOnChromeURLs, |
| 1732 extensions::switches::kIsolateExtensions, | 1731 extensions::switches::kIsolateExtensions, |
| 1733 extensions::switches::kNativeCrxBindings, | 1732 extensions::switches::kNativeCrxBindings, |
| 1734 extensions::switches::kWhitelistedExtensionID, | 1733 extensions::switches::kWhitelistedExtensionID, |
| 1735 #endif | 1734 #endif |
| 1736 switches::kAllowInsecureLocalhost, | 1735 switches::kAllowInsecureLocalhost, |
| 1737 switches::kAppsGalleryURL, | 1736 switches::kAppsGalleryURL, |
| 1738 switches::kCloudPrintURL, | 1737 switches::kCloudPrintURL, |
| (...skipping 1575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3314 render_frame_host, std::move(source), std::move(request)); | 3313 render_frame_host, std::move(source), std::move(request)); |
| 3315 #else | 3314 #else |
| 3316 // Chrome's media remoting implementation depends on the Media Router | 3315 // Chrome's media remoting implementation depends on the Media Router |
| 3317 // infrastructure to identify remote sinks and provide the user interface for | 3316 // infrastructure to identify remote sinks and provide the user interface for |
| 3318 // sink selection. In the case where the Media Router is not present, simply | 3317 // sink selection. In the case where the Media Router is not present, simply |
| 3319 // drop the interface request. This will prevent code paths for media remoting | 3318 // drop the interface request. This will prevent code paths for media remoting |
| 3320 // in the renderer process from activating. | 3319 // in the renderer process from activating. |
| 3321 #endif | 3320 #endif |
| 3322 } | 3321 } |
| 3323 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) | 3322 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) |
| OLD | NEW |