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

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

Issue 1126793002: cc: Make tiling interest rect calc based on viewport. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove switch entry from chromeos cmdline. Created 5 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 switches::kVideoUnderflowThresholdMs, 1324 switches::kVideoUnderflowThresholdMs,
1325 switches::kVModule, 1325 switches::kVModule,
1326 // Please keep these in alphabetical order. Compositor switches here should 1326 // Please keep these in alphabetical order. Compositor switches here should
1327 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1327 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1328 cc::switches::kCompositeToMailbox, 1328 cc::switches::kCompositeToMailbox,
1329 cc::switches::kDisableCompositedAntialiasing, 1329 cc::switches::kDisableCompositedAntialiasing,
1330 cc::switches::kDisableMainFrameBeforeActivation, 1330 cc::switches::kDisableMainFrameBeforeActivation,
1331 cc::switches::kDisableThreadedAnimation, 1331 cc::switches::kDisableThreadedAnimation,
1332 cc::switches::kEnableGpuBenchmarking, 1332 cc::switches::kEnableGpuBenchmarking,
1333 cc::switches::kEnableMainFrameBeforeActivation, 1333 cc::switches::kEnableMainFrameBeforeActivation,
1334 cc::switches::kMaxTilesForInterestArea,
1335 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1334 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1336 cc::switches::kShowCompositedLayerBorders, 1335 cc::switches::kShowCompositedLayerBorders,
1337 cc::switches::kShowFPSCounter, 1336 cc::switches::kShowFPSCounter,
1338 cc::switches::kShowLayerAnimationBounds, 1337 cc::switches::kShowLayerAnimationBounds,
1339 cc::switches::kShowPropertyChangedRects, 1338 cc::switches::kShowPropertyChangedRects,
1340 cc::switches::kShowReplicaScreenSpaceRects, 1339 cc::switches::kShowReplicaScreenSpaceRects,
1341 cc::switches::kShowScreenSpaceRects, 1340 cc::switches::kShowScreenSpaceRects,
1342 cc::switches::kShowSurfaceDamageRects, 1341 cc::switches::kShowSurfaceDamageRects,
1343 cc::switches::kSlowDownRasterScaleFactor, 1342 cc::switches::kSlowDownRasterScaleFactor,
1344 cc::switches::kStrictLayerPropertyChangeChecking, 1343 cc::switches::kStrictLayerPropertyChangeChecking,
(...skipping 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after
2454 if (worker_ref_count_ == 0) 2453 if (worker_ref_count_ == 0)
2455 Cleanup(); 2454 Cleanup();
2456 } 2455 }
2457 2456
2458 void RenderProcessHostImpl::GetAudioOutputControllers( 2457 void RenderProcessHostImpl::GetAudioOutputControllers(
2459 const GetAudioOutputControllersCallback& callback) const { 2458 const GetAudioOutputControllersCallback& callback) const {
2460 audio_renderer_host()->GetOutputControllers(callback); 2459 audio_renderer_host()->GetOutputControllers(callback);
2461 } 2460 }
2462 2461
2463 } // namespace content 2462 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698