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

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

Issue 620753006: Rendering API cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address jchaffraix remarks Created 6 years, 2 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/RenderView.h
diff --git a/Source/core/rendering/RenderView.h b/Source/core/rendering/RenderView.h
index 08e0849c7e6c75510f83b624199a0ff98d524c57..d7cbabda101bdea6c8ab66dcf59dd24b1f44cc07 100644
--- a/Source/core/rendering/RenderView.h
+++ b/Source/core/rendering/RenderView.h
@@ -96,10 +96,8 @@ public:
enum SelectionPaintInvalidationMode { PaintInvalidationNewXOROld, PaintInvalidationNewMinusOld, PaintInvalidationNothing };
void setSelection(RenderObject* start, int startPos, RenderObject*, int endPos, SelectionPaintInvalidationMode = PaintInvalidationNewXOROld);
- void getSelection(RenderObject*& startRenderer, int& startOffset, RenderObject*& endRenderer, int& endOffset) const;
void clearSelection();
RenderObject* selectionStart() const { return m_selectionStart; }
- RenderObject* selectionEnd() const { return m_selectionEnd; }
Julien - ping for review 2014/10/03 01:26:43 Let's keep this one for consistency.
IntRect selectionBounds() const;
void selectionStartEnd(int& startPos, int& endPos) const;
void invalidatePaintForSelection() const;
@@ -170,8 +168,6 @@ private:
virtual void mapAbsoluteToLocalPoint(MapCoordinatesFlags, TransformState&) const OVERRIDE;
virtual void computeSelfHitTestRects(Vector<LayoutRect>&, const LayoutPoint& layerOffset) const OVERRIDE;
- bool shouldInvalidatePaint(const LayoutRect&) const;
-
void layoutContent();
#if ENABLE(ASSERT)
void checkLayoutState();

Powered by Google App Engine
This is Rietveld 408576698