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

Unified Diff: Source/core/layout/api/LineLayoutText.h

Issue 1164933006: Create LineLayout api (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + nits Created 5 years, 5 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/layout/api/LineLayoutItem.h ('k') | Source/core/layout/line/BreakingContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/api/LineLayoutText.h
diff --git a/Source/core/layout/api/LineLayoutText.h b/Source/core/layout/api/LineLayoutText.h
new file mode 100644
index 0000000000000000000000000000000000000000..3524afd2afeb53dc6a42d0b4270aa8f217f18ab7
--- /dev/null
+++ b/Source/core/layout/api/LineLayoutText.h
@@ -0,0 +1,57 @@
+// 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 LineLayoutText_h
+#define LineLayoutText_h
+
+#include "core/layout/LayoutText.h"
+#include "core/layout/api/LineLayoutItem.h"
+#include "platform/LayoutUnit.h"
+#include "platform/text/TextPath.h"
+#include "wtf/Forward.h"
+
+namespace blink {
+
+class LayoutText;
+
+class LineLayoutText : public LineLayoutItem {
+public:
+ explicit LineLayoutText(LayoutText* layoutObject) : LineLayoutItem(layoutObject) { }
+
+ LineLayoutText(const LineLayoutItem& item)
+ : LineLayoutItem(item)
+ {
+ ASSERT(!item || item.isText());
+ }
+
+ LineLayoutText() { }
+
+ bool isWordBreak() const
+ {
+ return toText()->isWordBreak();
+ }
+
+ bool isAllCollapsibleWhitespace() const
+ {
+ return toText()->isAllCollapsibleWhitespace();
+ }
+
+ UChar characterAt(unsigned offset) const
+ {
+ return toText()->characterAt(offset);
+ }
+
+ unsigned textLength() const
+ {
+ return toText()->textLength();
+ }
+
+private:
+ LayoutText* toText() { return toLayoutText(layoutObject()); }
+ const LayoutText* toText() const { return toLayoutText(layoutObject()); }
+};
+
+} // namespace blink
+
+#endif // LineLayoutText_h
« no previous file with comments | « Source/core/layout/api/LineLayoutItem.h ('k') | Source/core/layout/line/BreakingContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698