Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(726)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 2443613002: Rename classes related to top controls (Closed)
Patch Set: fix test Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/browser/android/content_view_core_impl.cc ('k') | content/browser/renderer_host/render_widget_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698