| 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 1692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1703 switches::kEnablePluginPlaceholderTesting, | 1703 switches::kEnablePluginPlaceholderTesting, |
| 1704 switches::kEnablePreciseMemoryInfo, | 1704 switches::kEnablePreciseMemoryInfo, |
| 1705 switches::kEnablePreferCompositingToLCDText, | 1705 switches::kEnablePreferCompositingToLCDText, |
| 1706 switches::kEnableRGBA4444Textures, | 1706 switches::kEnableRGBA4444Textures, |
| 1707 switches::kEnableSkiaBenchmarking, | 1707 switches::kEnableSkiaBenchmarking, |
| 1708 switches::kEnableSlimmingPaintV2, | 1708 switches::kEnableSlimmingPaintV2, |
| 1709 switches::kEnableSmoothScrolling, | 1709 switches::kEnableSmoothScrolling, |
| 1710 switches::kEnableStatsTable, | 1710 switches::kEnableStatsTable, |
| 1711 switches::kEnableThreadedCompositing, | 1711 switches::kEnableThreadedCompositing, |
| 1712 switches::kEnableTouchDragDrop, | 1712 switches::kEnableTouchDragDrop, |
| 1713 switches::kEnableUnsafeES3APIs, | 1713 // switches::kEnableUnsafeES3APIs, |
| 1714 switches::kEnableUseZoomForDSF, | 1714 switches::kEnableUseZoomForDSF, |
| 1715 switches::kEnableViewport, | 1715 switches::kEnableViewport, |
| 1716 switches::kEnableVp9InMp4, | 1716 switches::kEnableVp9InMp4, |
| 1717 switches::kEnableVtune, | 1717 switches::kEnableVtune, |
| 1718 switches::kEnableWebBluetooth, | 1718 switches::kEnableWebBluetooth, |
| 1719 switches::kEnableWebFontsInterventionTrigger, | 1719 switches::kEnableWebFontsInterventionTrigger, |
| 1720 switches::kEnableWebFontsInterventionV2, | 1720 switches::kEnableWebFontsInterventionV2, |
| 1721 switches::kEnableWebGLDraftExtensions, | 1721 switches::kEnableWebGLDraftExtensions, |
| 1722 switches::kEnableWebGLImageChromium, | 1722 switches::kEnableWebGLImageChromium, |
| 1723 switches::kEnableWebVR, | 1723 switches::kEnableWebVR, |
| (...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3010 bad_message::ReceivedBadMessage(render_process_id, | 3010 bad_message::ReceivedBadMessage(render_process_id, |
| 3011 bad_message::RPH_MOJO_PROCESS_ERROR); | 3011 bad_message::RPH_MOJO_PROCESS_ERROR); |
| 3012 } | 3012 } |
| 3013 | 3013 |
| 3014 void RenderProcessHostImpl::CreateURLLoaderFactory( | 3014 void RenderProcessHostImpl::CreateURLLoaderFactory( |
| 3015 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { | 3015 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { |
| 3016 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); | 3016 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); |
| 3017 } | 3017 } |
| 3018 | 3018 |
| 3019 } // namespace content | 3019 } // namespace content |
| OLD | NEW |