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

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

Issue 1495983003: Reland: Enable compositor-thread property trees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after
1438 switches::kUseMobileUserAgent, 1438 switches::kUseMobileUserAgent,
1439 switches::kUseNormalPriorityForTileTaskWorkerThreads, 1439 switches::kUseNormalPriorityForTileTaskWorkerThreads,
1440 switches::kV, 1440 switches::kV,
1441 switches::kVideoThreads, 1441 switches::kVideoThreads,
1442 switches::kVideoUnderflowThresholdMs, 1442 switches::kVideoUnderflowThresholdMs,
1443 switches::kVModule, 1443 switches::kVModule,
1444 // Please keep these in alphabetical order. Compositor switches here should 1444 // Please keep these in alphabetical order. Compositor switches here should
1445 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1445 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1446 cc::switches::kDisableCachedPictureRaster, 1446 cc::switches::kDisableCachedPictureRaster,
1447 cc::switches::kDisableCompositedAntialiasing, 1447 cc::switches::kDisableCompositedAntialiasing,
1448 cc::switches::kDisableCompositorPropertyTrees,
1448 cc::switches::kDisableMainFrameBeforeActivation, 1449 cc::switches::kDisableMainFrameBeforeActivation,
1449 cc::switches::kDisableThreadedAnimation, 1450 cc::switches::kDisableThreadedAnimation,
1450 cc::switches::kEnableBeginFrameScheduling, 1451 cc::switches::kEnableBeginFrameScheduling,
1451 cc::switches::kEnableCompositorPropertyTrees,
1452 cc::switches::kEnableGpuBenchmarking, 1452 cc::switches::kEnableGpuBenchmarking,
1453 cc::switches::kEnableMainFrameBeforeActivation, 1453 cc::switches::kEnableMainFrameBeforeActivation,
1454 cc::switches::kShowCompositedLayerBorders, 1454 cc::switches::kShowCompositedLayerBorders,
1455 cc::switches::kShowFPSCounter, 1455 cc::switches::kShowFPSCounter,
1456 cc::switches::kShowLayerAnimationBounds, 1456 cc::switches::kShowLayerAnimationBounds,
1457 cc::switches::kShowPropertyChangedRects, 1457 cc::switches::kShowPropertyChangedRects,
1458 cc::switches::kShowReplicaScreenSpaceRects, 1458 cc::switches::kShowReplicaScreenSpaceRects,
1459 cc::switches::kShowScreenSpaceRects, 1459 cc::switches::kShowScreenSpaceRects,
1460 cc::switches::kShowSurfaceDamageRects, 1460 cc::switches::kShowSurfaceDamageRects,
1461 cc::switches::kSlowDownRasterScaleFactor, 1461 cc::switches::kSlowDownRasterScaleFactor,
(...skipping 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after
2662 void RenderProcessHostImpl::GetAudioOutputControllers( 2662 void RenderProcessHostImpl::GetAudioOutputControllers(
2663 const GetAudioOutputControllersCallback& callback) const { 2663 const GetAudioOutputControllersCallback& callback) const {
2664 audio_renderer_host()->GetOutputControllers(callback); 2664 audio_renderer_host()->GetOutputControllers(callback);
2665 } 2665 }
2666 2666
2667 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2667 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2668 return bluetooth_dispatcher_host_.get(); 2668 return bluetooth_dispatcher_host_.get();
2669 } 2669 }
2670 2670
2671 } // namespace content 2671 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/compositor_impl_android.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698