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 1759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1770 cc::switches::kEnableGpuBenchmarking, | 1770 cc::switches::kEnableGpuBenchmarking, |
1771 cc::switches::kEnableLayerLists, | 1771 cc::switches::kEnableLayerLists, |
1772 cc::switches::kEnableTileCompression, | 1772 cc::switches::kEnableTileCompression, |
1773 cc::switches::kShowCompositedLayerBorders, | 1773 cc::switches::kShowCompositedLayerBorders, |
1774 cc::switches::kShowFPSCounter, | 1774 cc::switches::kShowFPSCounter, |
1775 cc::switches::kShowLayerAnimationBounds, | 1775 cc::switches::kShowLayerAnimationBounds, |
1776 cc::switches::kShowPropertyChangedRects, | 1776 cc::switches::kShowPropertyChangedRects, |
1777 cc::switches::kShowScreenSpaceRects, | 1777 cc::switches::kShowScreenSpaceRects, |
1778 cc::switches::kShowSurfaceDamageRects, | 1778 cc::switches::kShowSurfaceDamageRects, |
1779 cc::switches::kSlowDownRasterScaleFactor, | 1779 cc::switches::kSlowDownRasterScaleFactor, |
1780 cc::switches::kTopControlsHideThreshold, | 1780 cc::switches::kBrowserControlsHideThreshold, |
1781 cc::switches::kTopControlsShowThreshold, | 1781 cc::switches::kBrowserControlsShowThreshold, |
1782 | 1782 |
1783 #if defined(ENABLE_PLUGINS) | 1783 #if defined(ENABLE_PLUGINS) |
1784 switches::kEnablePepperTesting, | 1784 switches::kEnablePepperTesting, |
1785 #endif | 1785 #endif |
1786 #if defined(ENABLE_WEBRTC) | 1786 #if defined(ENABLE_WEBRTC) |
1787 switches::kDisableWebRtcHWDecoding, | 1787 switches::kDisableWebRtcHWDecoding, |
1788 switches::kDisableWebRtcHWEncoding, | 1788 switches::kDisableWebRtcHWEncoding, |
1789 switches::kEnableWebRtcStunOrigin, | 1789 switches::kEnableWebRtcStunOrigin, |
1790 switches::kEnforceWebRtcIPPermissionCheck, | 1790 switches::kEnforceWebRtcIPPermissionCheck, |
1791 switches::kForceWebRtcIPHandlingPolicy, | 1791 switches::kForceWebRtcIPHandlingPolicy, |
(...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3005 bad_message::ReceivedBadMessage(render_process_id, | 3005 bad_message::ReceivedBadMessage(render_process_id, |
3006 bad_message::RPH_MOJO_PROCESS_ERROR); | 3006 bad_message::RPH_MOJO_PROCESS_ERROR); |
3007 } | 3007 } |
3008 | 3008 |
3009 void RenderProcessHostImpl::CreateURLLoaderFactory( | 3009 void RenderProcessHostImpl::CreateURLLoaderFactory( |
3010 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { | 3010 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { |
3011 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); | 3011 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); |
3012 } | 3012 } |
3013 | 3013 |
3014 } // namespace content | 3014 } // namespace content |
OLD | NEW |