Index: Source/core/paint/BoxClipper.h |
diff --git a/Source/core/rendering/RenderBoxClipper.h b/Source/core/paint/BoxClipper.h |
similarity index 72% |
rename from Source/core/rendering/RenderBoxClipper.h |
rename to Source/core/paint/BoxClipper.h |
index 67d3803ca937c5c8c3273ec5515ab904a7f07d8d..aa43e9f8d9f86b69d08a24d409f9595b265cb745 100644 |
--- a/Source/core/rendering/RenderBoxClipper.h |
+++ b/Source/core/paint/BoxClipper.h |
@@ -2,8 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef RenderBoxClipper_h |
-#define RenderBoxClipper_h |
+#ifndef BoxClipper_h |
+#define BoxClipper_h |
#include "core/rendering/PaintPhase.h" |
#include "platform/geometry/LayoutPoint.h" |
@@ -15,10 +15,10 @@ struct PaintInfo; |
enum ContentsClipBehavior { ForceContentsClip, SkipContentsClipIfPossible }; |
-class RenderBoxClipper { |
+class BoxClipper { |
public: |
- RenderBoxClipper(RenderBox&, PaintInfo&, const LayoutPoint& accumulatedOffset, ContentsClipBehavior); |
- ~RenderBoxClipper(); |
+ BoxClipper(RenderBox&, PaintInfo&, const LayoutPoint& accumulatedOffset, ContentsClipBehavior); |
+ ~BoxClipper(); |
bool pushedClip() { return m_pushedClip; } |
private: |
@@ -31,4 +31,4 @@ private: |
} // namespace blink |
-#endif // RenderBoxClipper_h |
+#endif // BoxClipper_h |