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 1749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1760 switches::kTouchEvents, | 1760 switches::kTouchEvents, |
1761 switches::kTouchTextSelectionStrategy, | 1761 switches::kTouchTextSelectionStrategy, |
1762 switches::kTraceConfigFile, | 1762 switches::kTraceConfigFile, |
1763 switches::kTraceToConsole, | 1763 switches::kTraceToConsole, |
1764 switches::kUseCrossProcessFramesForGuests, | 1764 switches::kUseCrossProcessFramesForGuests, |
1765 switches::kUseFakeUIForMediaStream, | 1765 switches::kUseFakeUIForMediaStream, |
1766 // This flag needs to be propagated to the renderer process for | 1766 // This flag needs to be propagated to the renderer process for |
1767 // --in-process-webgl. | 1767 // --in-process-webgl. |
1768 switches::kUseGL, | 1768 switches::kUseGL, |
1769 switches::kUseGpuInTests, | 1769 switches::kUseGpuInTests, |
| 1770 switches::kUseLayerTreeHostRemote, |
1770 switches::kUseMobileUserAgent, | 1771 switches::kUseMobileUserAgent, |
1771 switches::kUseRemoteCompositing, | 1772 switches::kUseRemoteCompositing, |
1772 switches::kV, | 1773 switches::kV, |
1773 switches::kV8CacheStrategiesForCacheStorage, | 1774 switches::kV8CacheStrategiesForCacheStorage, |
1774 switches::kVideoThreads, | 1775 switches::kVideoThreads, |
1775 switches::kVideoUnderflowThresholdMs, | 1776 switches::kVideoUnderflowThresholdMs, |
1776 switches::kVModule, | 1777 switches::kVModule, |
1777 // Please keep these in alphabetical order. Compositor switches here should | 1778 // Please keep these in alphabetical order. Compositor switches here should |
1778 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1779 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1779 cc::switches::kDisableCachedPictureRaster, | 1780 cc::switches::kDisableCachedPictureRaster, |
(...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3010 bad_message::ReceivedBadMessage(render_process_id, | 3011 bad_message::ReceivedBadMessage(render_process_id, |
3011 bad_message::RPH_MOJO_PROCESS_ERROR); | 3012 bad_message::RPH_MOJO_PROCESS_ERROR); |
3012 } | 3013 } |
3013 | 3014 |
3014 void RenderProcessHostImpl::CreateURLLoaderFactory( | 3015 void RenderProcessHostImpl::CreateURLLoaderFactory( |
3015 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { | 3016 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { |
3016 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); | 3017 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); |
3017 } | 3018 } |
3018 | 3019 |
3019 } // namespace content | 3020 } // namespace content |
OLD | NEW |