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

Unified Diff: third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.h

Issue 1665413003: [Line Layout API] Add LineLayoutSVGInline and LineLayoutSVGTextPath (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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: third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.h
diff --git a/third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.h b/third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.h
new file mode 100644
index 0000000000000000000000000000000000000000..bd1b85447a4bfc31a5867587986867d0aef49b42
--- /dev/null
+++ b/third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.h
@@ -0,0 +1,54 @@
+// Copyright 2015 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 LineLayoutSVGTextPath_h
+#define LineLayoutSVGTextPath_h
+
+#include "core/layout/api/LineLayoutSVGInline.h"
+#include "core/layout/svg/LayoutSVGTextPath.h"
+
+namespace blink {
+
+class LineLayoutSVGTextPath : public LineLayoutSVGInline {
+public:
+ explicit LineLayoutSVGTextPath(LayoutSVGTextPath* layoutSVGTextPath)
+ : LineLayoutSVGInline(layoutSVGTextPath)
+ {
+ }
+
+ explicit LineLayoutSVGTextPath(const LineLayoutItem& item)
+ : LineLayoutSVGInline(item)
+ {
+ ASSERT(!item || item.isSVGTextPath());
+ }
+
+ explicit LineLayoutSVGTextPath(std::nullptr_t) : LineLayoutSVGInline(nullptr) { }
+
+ LineLayoutSVGTextPath() { }
+
+ Path layoutPath() const
+ {
+ return toSVGTextPath()->layoutPath();
+ }
+
+ float calculateStartOffset(float pathLength) const
+ {
+ return toSVGTextPath()->calculateStartOffset(pathLength);
+ }
+
+private:
+ LayoutSVGTextPath* toSVGTextPath()
+ {
+ return toLayoutSVGTextPath(layoutObject());
+ }
+
+ const LayoutSVGTextPath* toSVGTextPath() const
+ {
+ return toLayoutSVGTextPath(layoutObject());
+ }
+};
+
+} // namespace blink
+
+#endif // LineLayoutSVGTextPath_h

Powered by Google App Engine
This is Rietveld 408576698