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

Side by Side Diff: Source/core/layout/api/LineLayoutText.cpp

Issue 1149953007: Create LineLayout api (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: removed source of crash. Created 5 years, 6 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 #include "config.h"
6 #include "core/layout/api/LineLayoutText.h"
7
8 namespace blink {
9
10 LineLayoutText::LineLayoutText(const LineLayoutItem& item)
11 : LineLayoutItem(item)
12 {
13 ASSERT(!item.layoutObject() || item.layoutObject()->isText());
14 }
15
16 bool LineLayoutText::isWordBreak() const
17 {
18 return text()->isWordBreak();
19 }
20
21 bool LineLayoutText::isAllCollapsibleWhitespace() const
22 {
23 return text()->isAllCollapsibleWhitespace();
24 }
25
26 UChar LineLayoutText::characterAt(unsigned offset) const
27 {
28 return text()->characterAt(offset);
29 }
30
31 unsigned LineLayoutText::textLength() const
32 {
33 return text()->textLength();
34 }
35
36 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/layout/api/LineLayoutText.h ('k') | Source/core/layout/line/BreakingContextInlineHeaders.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698