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

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

Issue 1381163002: Add a flag to disable partial raster in renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months 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 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after
1377 switches::kVideoUnderflowThresholdMs, 1377 switches::kVideoUnderflowThresholdMs,
1378 switches::kVModule, 1378 switches::kVModule,
1379 // Please keep these in alphabetical order. Compositor switches here should 1379 // Please keep these in alphabetical order. Compositor switches here should
1380 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1380 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1381 cc::switches::kDisableCompositedAntialiasing, 1381 cc::switches::kDisableCompositedAntialiasing,
1382 cc::switches::kDisableMainFrameBeforeActivation, 1382 cc::switches::kDisableMainFrameBeforeActivation,
1383 cc::switches::kDisableThreadedAnimation, 1383 cc::switches::kDisableThreadedAnimation,
1384 cc::switches::kEnableBeginFrameScheduling, 1384 cc::switches::kEnableBeginFrameScheduling,
1385 cc::switches::kEnableGpuBenchmarking, 1385 cc::switches::kEnableGpuBenchmarking,
1386 cc::switches::kEnableMainFrameBeforeActivation, 1386 cc::switches::kEnableMainFrameBeforeActivation,
1387 cc::switches::kEnablePartialRaster,
1387 cc::switches::kShowCompositedLayerBorders, 1388 cc::switches::kShowCompositedLayerBorders,
1388 cc::switches::kShowFPSCounter, 1389 cc::switches::kShowFPSCounter,
1389 cc::switches::kShowLayerAnimationBounds, 1390 cc::switches::kShowLayerAnimationBounds,
1390 cc::switches::kShowPropertyChangedRects, 1391 cc::switches::kShowPropertyChangedRects,
1391 cc::switches::kShowReplicaScreenSpaceRects, 1392 cc::switches::kShowReplicaScreenSpaceRects,
1392 cc::switches::kShowScreenSpaceRects, 1393 cc::switches::kShowScreenSpaceRects,
1393 cc::switches::kShowSurfaceDamageRects, 1394 cc::switches::kShowSurfaceDamageRects,
1394 cc::switches::kSlowDownRasterScaleFactor, 1395 cc::switches::kSlowDownRasterScaleFactor,
1395 cc::switches::kStrictLayerPropertyChangeChecking, 1396 cc::switches::kStrictLayerPropertyChangeChecking,
1396 cc::switches::kTopControlsHideThreshold, 1397 cc::switches::kTopControlsHideThreshold,
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
2548 void RenderProcessHostImpl::GetAudioOutputControllers( 2549 void RenderProcessHostImpl::GetAudioOutputControllers(
2549 const GetAudioOutputControllersCallback& callback) const { 2550 const GetAudioOutputControllersCallback& callback) const {
2550 audio_renderer_host()->GetOutputControllers(callback); 2551 audio_renderer_host()->GetOutputControllers(callback);
2551 } 2552 }
2552 2553
2553 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2554 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2554 return bluetooth_dispatcher_host_.get(); 2555 return bluetooth_dispatcher_host_.get();
2555 } 2556 }
2556 2557
2557 } // namespace content 2558 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698