| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef LineLayoutItem_h | 5 #ifndef LineLayoutItem_h |
| 6 #define LineLayoutItem_h | 6 #define LineLayoutItem_h |
| 7 | 7 |
| 8 #include "core/layout/LayoutObject.h" | 8 #include "core/layout/LayoutObject.h" |
| 9 #include "core/layout/LayoutObjectInlines.h" | 9 #include "core/layout/LayoutObjectInlines.h" |
| 10 | 10 |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 bool isRubyRun() const | 252 bool isRubyRun() const |
| 253 { | 253 { |
| 254 return m_layoutObject->isRubyRun(); | 254 return m_layoutObject->isRubyRun(); |
| 255 } | 255 } |
| 256 | 256 |
| 257 bool isRubyBase() const | 257 bool isRubyBase() const |
| 258 { | 258 { |
| 259 return m_layoutObject->isRubyBase(); | 259 return m_layoutObject->isRubyBase(); |
| 260 } | 260 } |
| 261 | 261 |
| 262 bool isSVGInline() const |
| 263 { |
| 264 return m_layoutObject->isSVGInline(); |
| 265 } |
| 266 |
| 262 bool isSVGInlineText() const | 267 bool isSVGInlineText() const |
| 263 { | 268 { |
| 264 return m_layoutObject->isSVGInlineText(); | 269 return m_layoutObject->isSVGInlineText(); |
| 265 } | 270 } |
| 266 | 271 |
| 272 bool isSVGTextPath() const |
| 273 { |
| 274 return m_layoutObject->isSVGTextPath(); |
| 275 } |
| 276 |
| 267 bool isTableCell() const | 277 bool isTableCell() const |
| 268 { | 278 { |
| 269 return m_layoutObject->isTableCell(); | 279 return m_layoutObject->isTableCell(); |
| 270 } | 280 } |
| 271 | 281 |
| 272 bool isText() const | 282 bool isText() const |
| 273 { | 283 { |
| 274 return m_layoutObject->isText(); | 284 return m_layoutObject->isText(); |
| 275 } | 285 } |
| 276 | 286 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 | 396 |
| 387 private: | 397 private: |
| 388 LayoutObject* m_layoutObject; | 398 LayoutObject* m_layoutObject; |
| 389 | 399 |
| 390 friend class LineLayoutAPIShim; | 400 friend class LineLayoutAPIShim; |
| 391 }; | 401 }; |
| 392 | 402 |
| 393 } // namespace blink | 403 } // namespace blink |
| 394 | 404 |
| 395 #endif // LineLayoutItem_h | 405 #endif // LineLayoutItem_h |
| OLD | NEW |