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

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

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/layout/compositing/GraphicsLayerUpdater.h
diff --git a/Source/core/layout/compositing/GraphicsLayerUpdater.h b/Source/core/layout/compositing/GraphicsLayerUpdater.h
index e3c8a6bc967ac9a4483f544a4e480e6c1bce8e1d..b3655ad25b87fb9c053b312dd3194acc650d4433 100644
--- a/Source/core/layout/compositing/GraphicsLayerUpdater.h
+++ b/Source/core/layout/compositing/GraphicsLayerUpdater.h
@@ -31,7 +31,7 @@
namespace blink {
-class RenderLayer;
+class Layer;
class GraphicsLayerUpdater {
@@ -44,18 +44,18 @@ public:
ForceUpdate,
};
- void update(RenderLayer&, Vector<RenderLayer*>& layersNeedingPaintInvalidation);
+ void update(Layer&, Vector<Layer*>& layersNeedingPaintInvalidation);
bool needsRebuildTree() const { return m_needsRebuildTree; }
#if ENABLE(ASSERT)
- static void assertNeedsToUpdateGraphicsLayerBitsCleared(RenderLayer&);
+ static void assertNeedsToUpdateGraphicsLayerBitsCleared(Layer&);
#endif
private:
class UpdateContext;
- void updateRecursive(RenderLayer&, UpdateType, const UpdateContext&, Vector<RenderLayer*>& layersNeedingPaintInvalidation);
+ void updateRecursive(Layer&, UpdateType, const UpdateContext&, Vector<Layer*>& layersNeedingPaintInvalidation);
bool m_needsRebuildTree;
};
« no previous file with comments | « Source/core/layout/compositing/GraphicsLayerTreeBuilder.cpp ('k') | Source/core/layout/compositing/GraphicsLayerUpdater.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698