OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 // Represents the browser side of the browser <--> renderer communication | 5 // Represents the browser side of the browser <--> renderer communication |
6 // channel. There will be one RenderProcessHost per renderer process. | 6 // channel. There will be one RenderProcessHost per renderer process. |
7 | 7 |
8 #include "content/browser/renderer_host/render_process_host_impl.h" | 8 #include "content/browser/renderer_host/render_process_host_impl.h" |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
(...skipping 1628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1639 switches::kDisableGpuCompositing, | 1639 switches::kDisableGpuCompositing, |
1640 switches::kDisableGpuMemoryBufferVideoFrames, | 1640 switches::kDisableGpuMemoryBufferVideoFrames, |
1641 switches::kDisableGpuVsync, | 1641 switches::kDisableGpuVsync, |
1642 switches::kDisableLowResTiling, | 1642 switches::kDisableLowResTiling, |
1643 switches::kDisableHistogramCustomizer, | 1643 switches::kDisableHistogramCustomizer, |
1644 switches::kDisableIconNtp, | 1644 switches::kDisableIconNtp, |
1645 switches::kDisableLCDText, | 1645 switches::kDisableLCDText, |
1646 switches::kDisableLocalStorage, | 1646 switches::kDisableLocalStorage, |
1647 switches::kDisableLogging, | 1647 switches::kDisableLogging, |
1648 switches::kDisableMediaSuspend, | 1648 switches::kDisableMediaSuspend, |
| 1649 switches::kDisableMojoServiceWorker, |
1649 switches::kDisableNotifications, | 1650 switches::kDisableNotifications, |
1650 switches::kDisableOverlayScrollbar, | 1651 switches::kDisableOverlayScrollbar, |
1651 switches::kDisablePepper3DImageChromium, | 1652 switches::kDisablePepper3DImageChromium, |
1652 switches::kDisablePermissionsAPI, | 1653 switches::kDisablePermissionsAPI, |
1653 switches::kDisablePresentationAPI, | 1654 switches::kDisablePresentationAPI, |
1654 switches::kDisablePinch, | 1655 switches::kDisablePinch, |
1655 switches::kDisableRGBA4444Textures, | 1656 switches::kDisableRGBA4444Textures, |
1656 switches::kDisableRTCSmoothnessAlgorithm, | 1657 switches::kDisableRTCSmoothnessAlgorithm, |
1657 switches::kDisableSeccompFilterSandbox, | 1658 switches::kDisableSeccompFilterSandbox, |
1658 switches::kDisableSharedWorkers, | 1659 switches::kDisableSharedWorkers, |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1716 switches::kInertVisualViewport, | 1717 switches::kInertVisualViewport, |
1717 switches::kIPCConnectionTimeout, | 1718 switches::kIPCConnectionTimeout, |
1718 switches::kIsRunningInMash, | 1719 switches::kIsRunningInMash, |
1719 switches::kJavaScriptFlags, | 1720 switches::kJavaScriptFlags, |
1720 switches::kLoggingLevel, | 1721 switches::kLoggingLevel, |
1721 switches::kMainFrameResizesAreOrientationChanges, | 1722 switches::kMainFrameResizesAreOrientationChanges, |
1722 switches::kMaxUntiledLayerWidth, | 1723 switches::kMaxUntiledLayerWidth, |
1723 switches::kMaxUntiledLayerHeight, | 1724 switches::kMaxUntiledLayerHeight, |
1724 switches::kMemoryMetrics, | 1725 switches::kMemoryMetrics, |
1725 switches::kMojoLocalStorage, | 1726 switches::kMojoLocalStorage, |
1726 switches::kMojoServiceWorker, | |
1727 switches::kMSEAudioBufferSizeLimit, | 1727 switches::kMSEAudioBufferSizeLimit, |
1728 switches::kMSEVideoBufferSizeLimit, | 1728 switches::kMSEVideoBufferSizeLimit, |
1729 switches::kNoReferrers, | 1729 switches::kNoReferrers, |
1730 switches::kNoSandbox, | 1730 switches::kNoSandbox, |
1731 switches::kOverridePluginPowerSaverForTesting, | 1731 switches::kOverridePluginPowerSaverForTesting, |
1732 switches::kPassiveListenersDefault, | 1732 switches::kPassiveListenersDefault, |
1733 switches::kPpapiInProcess, | 1733 switches::kPpapiInProcess, |
1734 switches::kProfilerTiming, | 1734 switches::kProfilerTiming, |
1735 switches::kReducedReferrerGranularity, | 1735 switches::kReducedReferrerGranularity, |
1736 switches::kReduceSecurityForTesting, | 1736 switches::kReduceSecurityForTesting, |
(...skipping 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3003 bad_message::ReceivedBadMessage(render_process_id, | 3003 bad_message::ReceivedBadMessage(render_process_id, |
3004 bad_message::RPH_MOJO_PROCESS_ERROR); | 3004 bad_message::RPH_MOJO_PROCESS_ERROR); |
3005 } | 3005 } |
3006 | 3006 |
3007 void RenderProcessHostImpl::CreateURLLoaderFactory( | 3007 void RenderProcessHostImpl::CreateURLLoaderFactory( |
3008 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { | 3008 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { |
3009 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); | 3009 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); |
3010 } | 3010 } |
3011 | 3011 |
3012 } // namespace content | 3012 } // namespace content |
OLD | NEW |