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

Unified Diff: Source/core/rendering/RenderText.h

Issue 945803004: Merge back LayoutLayerModelObject into RenderBoxModelObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/RenderText.h
diff --git a/Source/core/rendering/RenderText.h b/Source/core/rendering/RenderText.h
index 145dc5b76c19a4311f51455f9799797ebe5b0e56..c36db22720a74897e82fd78115dbb73ebf153d11 100644
--- a/Source/core/rendering/RenderText.h
+++ b/Source/core/rendering/RenderText.h
@@ -114,7 +114,7 @@ public:
virtual bool canBeSelectionLeaf() const override { return true; }
virtual void setSelectionState(SelectionState) override final;
- virtual LayoutRect selectionRectForPaintInvalidation(const LayoutLayerModelObject* paintInvalidationContainer) const override;
+ virtual LayoutRect selectionRectForPaintInvalidation(const RenderBoxModelObject* paintInvalidationContainer) const override;
virtual LayoutRect localCaretRect(InlineBox*, int caretOffset, LayoutUnit* extraWidthToEndOfLine = 0) override;
InlineTextBox* firstTextBox() const { return m_firstTextBox; }
@@ -180,7 +180,7 @@ private:
bool isText() const = delete; // This will catch anyone doing an unnecessary check.
- virtual LayoutRect clippedOverflowRectForPaintInvalidation(const LayoutLayerModelObject* paintInvalidationContainer, const PaintInvalidationState* = 0) const override;
+ virtual LayoutRect clippedOverflowRectForPaintInvalidation(const RenderBoxModelObject* paintInvalidationContainer, const PaintInvalidationState* = 0) const override;
void checkConsistency() const;

Powered by Google App Engine
This is Rietveld 408576698