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

Unified Diff: third_party/WebKit/Source/core/layout/line/InlineBox.h

Issue 2518363003: Refactor InlineBox::calculateBoundaries() (Closed)
Patch Set: Rebase Created 4 years, 1 month 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/line/InlineBox.h
diff --git a/third_party/WebKit/Source/core/layout/line/InlineBox.h b/third_party/WebKit/Source/core/layout/line/InlineBox.h
index 5d9c61c8b38afe9cd0b57a326d33b487077b3c26..e3b32834c088898e09dd22db99dd1671c0b56635 100644
--- a/third_party/WebKit/Source/core/layout/line/InlineBox.h
+++ b/third_party/WebKit/Source/core/layout/line/InlineBox.h
@@ -169,11 +169,6 @@ class CORE_EXPORT InlineBox : public DisplayItemClient {
m_bitfields.setIsHorizontal(isHorizontal);
}
- virtual LayoutRect calculateBoundaries() const {
- ASSERT_NOT_REACHED();
- return LayoutRect();
- }
-
bool isConstructed() { return m_bitfields.constructed(); }
virtual void setConstructed() { m_bitfields.setConstructed(true); }

Powered by Google App Engine
This is Rietveld 408576698