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

Unified Diff: Source/core/paint/DetailsMarkerPainter.h

Issue 596563003: Move painting code from RenderDetailsMarker into DetailsMarkerPainter. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merge Created 6 years, 3 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/core.gypi ('k') | Source/core/paint/DetailsMarkerPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/DetailsMarkerPainter.h
diff --git a/Source/core/paint/DetailsMarkerPainter.h b/Source/core/paint/DetailsMarkerPainter.h
new file mode 100644
index 0000000000000000000000000000000000000000..e801a1fef62b993d53c0038d590bc6f151981174
--- /dev/null
+++ b/Source/core/paint/DetailsMarkerPainter.h
@@ -0,0 +1,30 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef DetailsMarkerPainter_h
+#define DetailsMarkerPainter_h
+
+namespace blink {
+
+struct PaintInfo;
+class Path;
+class LayoutPoint;
+class RenderDetailsMarker;
+
+class DetailsMarkerPainter {
+public:
+ DetailsMarkerPainter(RenderDetailsMarker& renderDetailsMarker) : m_renderDetailsMarker(renderDetailsMarker) { }
+
+ void paint(PaintInfo&, const LayoutPoint& paintOffset);
+
+private:
+ Path getCanonicalPath() const;
+ Path getPath(const LayoutPoint& origin) const;
+
+ RenderDetailsMarker& m_renderDetailsMarker;
+};
+
+} // namespace blink
+
+#endif // DetailsMarkerPainter_h
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/paint/DetailsMarkerPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698