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

Unified Diff: Source/core/rendering/compositing/GraphicsLayerUpdater.h

Issue 210093005: Remove histogram from GraphicsLayerUpdater::rebuildTree (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fewer private fields Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/rendering/compositing/GraphicsLayerUpdater.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/compositing/GraphicsLayerUpdater.h
diff --git a/Source/core/rendering/compositing/GraphicsLayerUpdater.h b/Source/core/rendering/compositing/GraphicsLayerUpdater.h
index c374c036b800c6e08d121e7d96850a19c5ab9120..11cfea3894fa784d4fffa9e528837393e63b0110 100644
--- a/Source/core/rendering/compositing/GraphicsLayerUpdater.h
+++ b/Source/core/rendering/compositing/GraphicsLayerUpdater.h
@@ -38,7 +38,7 @@ class RenderView;
class GraphicsLayerUpdater {
public:
- explicit GraphicsLayerUpdater(RenderView&);
+ GraphicsLayerUpdater();
~GraphicsLayerUpdater();
enum UpdateType {
@@ -47,17 +47,10 @@ public:
};
void updateRecursive(RenderLayer&, UpdateType);
- void rebuildTree(RenderLayer&, UpdateType, GraphicsLayerVector& childLayersOfEnclosingLayer, int depth);
+ void rebuildTree(RenderLayer&, UpdateType, GraphicsLayerVector& childLayersOfEnclosingLayer);
private:
UpdateType update(RenderLayer&, UpdateType);
-
- RenderView& m_renderView;
-
- // Used for gathering UMA data about the effect on memory usage of promoting all layers
- // that have a webkit-transition on opacity or transform and intersect the viewport.
- double m_pixelsWithoutPromotingAllTransitions;
- double m_pixelsAddedByPromotingAllTransitions;
};
} // namespace WebCore
« no previous file with comments | « no previous file | Source/core/rendering/compositing/GraphicsLayerUpdater.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698