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

Unified Diff: Source/core/paint/BoxClipper.cpp

Issue 732093002: Move RenderBoxClipper to core/paint/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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/paint/BoxClipper.h ('k') | Source/core/paint/TablePainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/BoxClipper.cpp
diff --git a/Source/core/rendering/RenderBoxClipper.cpp b/Source/core/paint/BoxClipper.cpp
similarity index 92%
rename from Source/core/rendering/RenderBoxClipper.cpp
rename to Source/core/paint/BoxClipper.cpp
index c358886355db9d179cd38e17e4d47efdb7371002..f1f17f5e77c297865832aa8fe3d46c0b13dfc7e2 100644
--- a/Source/core/rendering/RenderBoxClipper.cpp
+++ b/Source/core/paint/BoxClipper.cpp
@@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "config.h"
-#include "core/rendering/RenderBoxClipper.h"
+#include "core/paint/BoxClipper.h"
#include "core/rendering/PaintInfo.h"
#include "core/rendering/RenderBox.h"
@@ -11,7 +11,7 @@
namespace blink {
-RenderBoxClipper::RenderBoxClipper(RenderBox& box, PaintInfo& paintInfo, const LayoutPoint& accumulatedOffset, ContentsClipBehavior contentsClipBehavior)
+BoxClipper::BoxClipper(RenderBox& box, PaintInfo& paintInfo, const LayoutPoint& accumulatedOffset, ContentsClipBehavior contentsClipBehavior)
: m_pushedClip(false)
, m_accumulatedOffset(accumulatedOffset)
, m_paintInfo(paintInfo)
@@ -62,7 +62,7 @@ RenderBoxClipper::RenderBoxClipper(RenderBox& box, PaintInfo& paintInfo, const L
m_pushedClip = true;
}
-RenderBoxClipper::~RenderBoxClipper()
+BoxClipper::~BoxClipper()
{
if (!m_pushedClip)
return;
« no previous file with comments | « Source/core/paint/BoxClipper.h ('k') | Source/core/paint/TablePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698