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

Unified Diff: Source/core/layout/LayerReflectionInfo.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
« no previous file with comments | « Source/core/layout/LayerPaintingInfo.h ('k') | Source/core/layout/LayerReflectionInfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayerReflectionInfo.h
diff --git a/Source/core/rendering/RenderLayerReflectionInfo.h b/Source/core/layout/LayerReflectionInfo.h
similarity index 87%
rename from Source/core/rendering/RenderLayerReflectionInfo.h
rename to Source/core/layout/LayerReflectionInfo.h
index 23a3f291e80d27d333bcff63c073b1a647ac6aa1..69b1a4475f40dd5f1b7c8d4ce67e7704af5255df 100644
--- a/Source/core/rendering/RenderLayerReflectionInfo.h
+++ b/Source/core/layout/LayerReflectionInfo.h
@@ -42,26 +42,26 @@
* version of this file under any of the LGPL, the MPL or the GPL.
*/
-#ifndef RenderLayerReflectionInfo_h
-#define RenderLayerReflectionInfo_h
+#ifndef LayerReflectionInfo_h
+#define LayerReflectionInfo_h
-#include "core/rendering/LayerPaintingInfo.h"
-#include "core/rendering/RenderLayerModelObject.h"
+#include "core/layout/LayerPaintingInfo.h"
+#include "core/layout/LayoutLayerModelObject.h"
#include "wtf/Noncopyable.h"
namespace blink {
-class RenderLayer;
+class Layer;
class RenderReplica;
-class RenderLayerReflectionInfo {
- WTF_MAKE_NONCOPYABLE(RenderLayerReflectionInfo);
+class LayerReflectionInfo {
+ WTF_MAKE_NONCOPYABLE(LayerReflectionInfo);
public:
- explicit RenderLayerReflectionInfo(RenderBox&);
+ explicit LayerReflectionInfo(RenderBox&);
void destroy();
RenderReplica* reflection() const { return m_reflection; }
- RenderLayer* reflectionLayer() const;
+ Layer* reflectionLayer() const;
bool isPaintingInsideReflection() const { return m_isPaintingInsideReflection; }
@@ -82,4 +82,4 @@ private:
} // namespace blink
-#endif // RenderLayerReflectinInfo_h
+#endif // LayerReflectinInfo_h
« no previous file with comments | « Source/core/layout/LayerPaintingInfo.h ('k') | Source/core/layout/LayerReflectionInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698