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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef LineLayoutSVGTextPath_h
6 #define LineLayoutSVGTextPath_h
7
8 #include "core/layout/api/LineLayoutSVGInline.h"
9 #include "core/layout/svg/LayoutSVGTextPath.h"
10
11 namespace blink {
12
13 class LineLayoutSVGTextPath : public LineLayoutSVGInline {
14 public:
15 explicit LineLayoutSVGTextPath(LayoutSVGTextPath* layoutSVGTextPath)
16 : LineLayoutSVGInline(layoutSVGTextPath)
17 {
18 }
19
20 explicit LineLayoutSVGTextPath(const LineLayoutItem& item)
21 : LineLayoutSVGInline(item)
22 {
23 ASSERT(!item || item.isSVGTextPath());
24 }
25
26 explicit LineLayoutSVGTextPath(std::nullptr_t) : LineLayoutSVGInline(nullptr ) { }
27
28 LineLayoutSVGTextPath() { }
29
30 Path layoutPath() const
31 {
32 return toSVGTextPath()->layoutPath();
33 }
34
35 float calculateStartOffset(float pathLength) const
36 {
37 return toSVGTextPath()->calculateStartOffset(pathLength);
38 }
39
40 private:
41 LayoutSVGTextPath* toSVGTextPath()
42 {
43 return toLayoutSVGTextPath(layoutObject());
44 }
45
46 const LayoutSVGTextPath* toSVGTextPath() const
47 {
48 return toLayoutSVGTextPath(layoutObject());
49 }
50 };
51
52 } // namespace blink
53
54 #endif // LineLayoutSVGTextPath_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698