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

Unified Diff: Source/core/layout/compositing/CompositingInputsUpdater.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/CompositingInputsUpdater.h
diff --git a/Source/core/layout/compositing/CompositingInputsUpdater.h b/Source/core/layout/compositing/CompositingInputsUpdater.h
index fde5afa2641beee1e3dae4768c23fa622da87dfe..ac0eb9c8b9b3008ef6cadfe66b7152c07bb27d09 100644
--- a/Source/core/layout/compositing/CompositingInputsUpdater.h
+++ b/Source/core/layout/compositing/CompositingInputsUpdater.h
@@ -9,17 +9,17 @@
namespace blink {
-class RenderLayer;
+class Layer;
class CompositingInputsUpdater {
public:
- explicit CompositingInputsUpdater(RenderLayer* rootRenderLayer);
+ explicit CompositingInputsUpdater(Layer* rootLayer);
~CompositingInputsUpdater();
void update();
#if ENABLE(ASSERT)
- static void assertNeedsCompositingInputsUpdateBitsCleared(RenderLayer*);
+ static void assertNeedsCompositingInputsUpdateBitsCleared(Layer*);
#endif
private:
@@ -38,22 +38,22 @@ private:
{
}
- RenderLayer* ancestorStackingContext;
- RenderLayer* enclosingCompositedLayer;
+ Layer* ancestorStackingContext;
+ Layer* enclosingCompositedLayer;
// Notice that lastScrollingAncestor isn't the same thing as
// ancestorScrollingLayer. The former is just the nearest scrolling
- // along the RenderLayer::parent() chain. The latter is the layer that
+ // along the Layer::parent() chain. The latter is the layer that
// actually controls the scrolling of this layer, which we find on the
// containing block chain.
- RenderLayer* lastScrollingAncestor;
+ Layer* lastScrollingAncestor;
bool hasAncestorWithClipOrOverflowClip;
bool hasAncestorWithClipPath;
};
- void updateRecursive(RenderLayer*, UpdateType, AncestorInfo);
+ void updateRecursive(Layer*, UpdateType, AncestorInfo);
RenderGeometryMap m_geometryMap;
- RenderLayer* m_rootRenderLayer;
+ Layer* m_rootLayer;
};
} // namespace blink
« no previous file with comments | « Source/core/layout/compositing/CompositedLayerMapping.cpp ('k') | Source/core/layout/compositing/CompositingInputsUpdater.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698