Chromium Code Reviews| 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 1669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1680 switches::kEnablePluginPlaceholderTesting, | 1680 switches::kEnablePluginPlaceholderTesting, |
| 1681 switches::kEnablePreciseMemoryInfo, | 1681 switches::kEnablePreciseMemoryInfo, |
| 1682 switches::kEnablePreferCompositingToLCDText, | 1682 switches::kEnablePreferCompositingToLCDText, |
| 1683 switches::kEnableRGBA4444Textures, | 1683 switches::kEnableRGBA4444Textures, |
| 1684 switches::kEnableSkiaBenchmarking, | 1684 switches::kEnableSkiaBenchmarking, |
| 1685 switches::kEnableSlimmingPaintV2, | 1685 switches::kEnableSlimmingPaintV2, |
| 1686 switches::kEnableSmoothScrolling, | 1686 switches::kEnableSmoothScrolling, |
| 1687 switches::kEnableStatsTable, | 1687 switches::kEnableStatsTable, |
| 1688 switches::kEnableThreadedCompositing, | 1688 switches::kEnableThreadedCompositing, |
| 1689 switches::kEnableTouchDragDrop, | 1689 switches::kEnableTouchDragDrop, |
| 1690 switches::kEnableUnsafeES3APIs, | |
|
Zhenyao Mo
2016/10/28 19:00:06
This is no longer necessary. We just fail the cont
| |
| 1691 switches::kEnableUseZoomForDSF, | 1690 switches::kEnableUseZoomForDSF, |
| 1692 switches::kEnableViewport, | 1691 switches::kEnableViewport, |
| 1693 switches::kEnableVp9InMp4, | 1692 switches::kEnableVp9InMp4, |
| 1694 switches::kEnableVtune, | 1693 switches::kEnableVtune, |
| 1695 switches::kEnableWebFontsInterventionTrigger, | 1694 switches::kEnableWebFontsInterventionTrigger, |
| 1696 switches::kEnableWebFontsInterventionV2, | 1695 switches::kEnableWebFontsInterventionV2, |
| 1697 switches::kEnableWebGLDraftExtensions, | 1696 switches::kEnableWebGLDraftExtensions, |
| 1698 switches::kEnableWebGLImageChromium, | 1697 switches::kEnableWebGLImageChromium, |
| 1699 switches::kEnableWebVR, | 1698 switches::kEnableWebVR, |
| 1700 switches::kExplicitlyAllowedPorts, | 1699 switches::kExplicitlyAllowedPorts, |
| (...skipping 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2986 bad_message::ReceivedBadMessage(render_process_id, | 2985 bad_message::ReceivedBadMessage(render_process_id, |
| 2987 bad_message::RPH_MOJO_PROCESS_ERROR); | 2986 bad_message::RPH_MOJO_PROCESS_ERROR); |
| 2988 } | 2987 } |
| 2989 | 2988 |
| 2990 void RenderProcessHostImpl::CreateURLLoaderFactory( | 2989 void RenderProcessHostImpl::CreateURLLoaderFactory( |
| 2991 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { | 2990 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { |
| 2992 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); | 2991 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); |
| 2993 } | 2992 } |
| 2994 | 2993 |
| 2995 } // namespace content | 2994 } // namespace content |
| OLD | NEW |