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

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

Issue 1379783002: Allow one-copy task tile worker pool to use compressed textures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove needs_conversion, fix tile size unit test and move modulo 4 DCHECK (for tests) 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 1433 matching lines...) Expand 10 before | Expand all | Expand 10 after
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::kDisableCompositorPropertyTrees,
1449 cc::switches::kDisableMainFrameBeforeActivation, 1449 cc::switches::kDisableMainFrameBeforeActivation,
1450 cc::switches::kDisableThreadedAnimation, 1450 cc::switches::kDisableThreadedAnimation,
1451 cc::switches::kEnableBeginFrameScheduling, 1451 cc::switches::kEnableBeginFrameScheduling,
1452 cc::switches::kEnableGpuBenchmarking, 1452 cc::switches::kEnableGpuBenchmarking,
1453 cc::switches::kEnableMainFrameBeforeActivation, 1453 cc::switches::kEnableMainFrameBeforeActivation,
1454 cc::switches::kEnableTileCompression,
1454 cc::switches::kShowCompositedLayerBorders, 1455 cc::switches::kShowCompositedLayerBorders,
1455 cc::switches::kShowLayerAnimationBounds, 1456 cc::switches::kShowLayerAnimationBounds,
1456 cc::switches::kShowPropertyChangedRects, 1457 cc::switches::kShowPropertyChangedRects,
1457 cc::switches::kShowReplicaScreenSpaceRects, 1458 cc::switches::kShowReplicaScreenSpaceRects,
1458 cc::switches::kShowScreenSpaceRects, 1459 cc::switches::kShowScreenSpaceRects,
1459 cc::switches::kShowSurfaceDamageRects, 1460 cc::switches::kShowSurfaceDamageRects,
1460 cc::switches::kSlowDownRasterScaleFactor, 1461 cc::switches::kSlowDownRasterScaleFactor,
1461 cc::switches::kStrictLayerPropertyChangeChecking, 1462 cc::switches::kStrictLayerPropertyChangeChecking,
1462 cc::switches::kTopControlsHideThreshold, 1463 cc::switches::kTopControlsHideThreshold,
1463 cc::switches::kTopControlsShowThreshold, 1464 cc::switches::kTopControlsShowThreshold,
(...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after
2658 void RenderProcessHostImpl::GetAudioOutputControllers( 2659 void RenderProcessHostImpl::GetAudioOutputControllers(
2659 const GetAudioOutputControllersCallback& callback) const { 2660 const GetAudioOutputControllersCallback& callback) const {
2660 audio_renderer_host()->GetOutputControllers(callback); 2661 audio_renderer_host()->GetOutputControllers(callback);
2661 } 2662 }
2662 2663
2663 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2664 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2664 return bluetooth_dispatcher_host_.get(); 2665 return bluetooth_dispatcher_host_.get();
2665 } 2666 }
2666 2667
2667 } // namespace content 2668 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698