| 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 1665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1676 switches::kEnablePluginPlaceholderTesting, | 1676 switches::kEnablePluginPlaceholderTesting, |
| 1677 switches::kEnablePreciseMemoryInfo, | 1677 switches::kEnablePreciseMemoryInfo, |
| 1678 switches::kEnablePreferCompositingToLCDText, | 1678 switches::kEnablePreferCompositingToLCDText, |
| 1679 switches::kEnableRGBA4444Textures, | 1679 switches::kEnableRGBA4444Textures, |
| 1680 switches::kEnableSkiaBenchmarking, | 1680 switches::kEnableSkiaBenchmarking, |
| 1681 switches::kEnableSlimmingPaintV2, | 1681 switches::kEnableSlimmingPaintV2, |
| 1682 switches::kEnableSmoothScrolling, | 1682 switches::kEnableSmoothScrolling, |
| 1683 switches::kEnableStatsTable, | 1683 switches::kEnableStatsTable, |
| 1684 switches::kEnableThreadedCompositing, | 1684 switches::kEnableThreadedCompositing, |
| 1685 switches::kEnableTouchDragDrop, | 1685 switches::kEnableTouchDragDrop, |
| 1686 switches::kEnableUnsafeES3APIs, | |
| 1687 switches::kEnableUseZoomForDSF, | 1686 switches::kEnableUseZoomForDSF, |
| 1688 switches::kEnableViewport, | 1687 switches::kEnableViewport, |
| 1689 switches::kEnableVp9InMp4, | 1688 switches::kEnableVp9InMp4, |
| 1690 switches::kEnableVtune, | 1689 switches::kEnableVtune, |
| 1691 switches::kEnableWebBluetooth, | 1690 switches::kEnableWebBluetooth, |
| 1692 switches::kEnableWebFontsInterventionTrigger, | 1691 switches::kEnableWebFontsInterventionTrigger, |
| 1693 switches::kEnableWebFontsInterventionV2, | 1692 switches::kEnableWebFontsInterventionV2, |
| 1694 switches::kEnableWebGLDraftExtensions, | 1693 switches::kEnableWebGLDraftExtensions, |
| 1695 switches::kEnableWebGLImageChromium, | 1694 switches::kEnableWebGLImageChromium, |
| 1696 switches::kEnableWebVR, | 1695 switches::kEnableWebVR, |
| (...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2983 bad_message::ReceivedBadMessage(render_process_id, | 2982 bad_message::ReceivedBadMessage(render_process_id, |
| 2984 bad_message::RPH_MOJO_PROCESS_ERROR); | 2983 bad_message::RPH_MOJO_PROCESS_ERROR); |
| 2985 } | 2984 } |
| 2986 | 2985 |
| 2987 void RenderProcessHostImpl::CreateURLLoaderFactory( | 2986 void RenderProcessHostImpl::CreateURLLoaderFactory( |
| 2988 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { | 2987 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { |
| 2989 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); | 2988 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); |
| 2990 } | 2989 } |
| 2991 | 2990 |
| 2992 } // namespace content | 2991 } // namespace content |
| OLD | NEW |