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

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

Issue 1713503002: Reland Allow one-copy and zero-copy task tile worker pools to use compressed textures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 10 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
« no previous file with comments | « cc/trees/layer_tree_host_impl.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after
1518 switches::kVModule, 1518 switches::kVModule,
1519 // Please keep these in alphabetical order. Compositor switches here should 1519 // Please keep these in alphabetical order. Compositor switches here should
1520 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1520 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1521 cc::switches::kDisableCachedPictureRaster, 1521 cc::switches::kDisableCachedPictureRaster,
1522 cc::switches::kDisableCompositedAntialiasing, 1522 cc::switches::kDisableCompositedAntialiasing,
1523 cc::switches::kDisableMainFrameBeforeActivation, 1523 cc::switches::kDisableMainFrameBeforeActivation,
1524 cc::switches::kDisableThreadedAnimation, 1524 cc::switches::kDisableThreadedAnimation,
1525 cc::switches::kEnableBeginFrameScheduling, 1525 cc::switches::kEnableBeginFrameScheduling,
1526 cc::switches::kEnableGpuBenchmarking, 1526 cc::switches::kEnableGpuBenchmarking,
1527 cc::switches::kEnableMainFrameBeforeActivation, 1527 cc::switches::kEnableMainFrameBeforeActivation,
1528 cc::switches::kEnableTileCompression,
1528 cc::switches::kShowCompositedLayerBorders, 1529 cc::switches::kShowCompositedLayerBorders,
1529 cc::switches::kShowFPSCounter, 1530 cc::switches::kShowFPSCounter,
1530 cc::switches::kShowLayerAnimationBounds, 1531 cc::switches::kShowLayerAnimationBounds,
1531 cc::switches::kShowPropertyChangedRects, 1532 cc::switches::kShowPropertyChangedRects,
1532 cc::switches::kShowReplicaScreenSpaceRects, 1533 cc::switches::kShowReplicaScreenSpaceRects,
1533 cc::switches::kShowScreenSpaceRects, 1534 cc::switches::kShowScreenSpaceRects,
1534 cc::switches::kShowSurfaceDamageRects, 1535 cc::switches::kShowSurfaceDamageRects,
1535 cc::switches::kSlowDownRasterScaleFactor, 1536 cc::switches::kSlowDownRasterScaleFactor,
1536 cc::switches::kStrictLayerPropertyChangeChecking, 1537 cc::switches::kStrictLayerPropertyChangeChecking,
1537 cc::switches::kTopControlsHideThreshold, 1538 cc::switches::kTopControlsHideThreshold,
(...skipping 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after
2792 2793
2793 // Skip widgets in other processes. 2794 // Skip widgets in other processes.
2794 if (rvh->GetProcess()->GetID() != GetID()) 2795 if (rvh->GetProcess()->GetID() != GetID())
2795 continue; 2796 continue;
2796 2797
2797 rvh->OnWebkitPreferencesChanged(); 2798 rvh->OnWebkitPreferencesChanged();
2798 } 2799 }
2799 } 2800 }
2800 2801
2801 } // namespace content 2802 } // namespace content
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_impl.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698