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

Unified Diff: Source/core/editing/DragCaretController.h

Issue 1310323004: Introduce positionForPoint() in LocalFrame class as replacement of visiblePositionForPoint() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-25T15:15:43 Created 5 years, 4 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
« no previous file with comments | « no previous file | Source/core/editing/DragCaretController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/DragCaretController.h
diff --git a/Source/core/editing/DragCaretController.h b/Source/core/editing/DragCaretController.h
index 19e6388e072b5ca7a5d56238c2c07191bb5cbe79..aa15965b6d3ce4f276a2bc378e255c2369f26557 100644
--- a/Source/core/editing/DragCaretController.h
+++ b/Source/core/editing/DragCaretController.h
@@ -44,8 +44,8 @@ public:
bool hasCaret() const { return m_position.isNotNull(); }
const VisiblePosition& caretPosition() { return m_position; }
- void setCaretPosition(const VisiblePosition&);
- void clear() { setCaretPosition(VisiblePosition()); }
+ void setCaretPosition(const PositionWithAffinity&);
+ void clear() { setCaretPosition(PositionWithAffinity()); }
void nodeWillBeRemoved(Node&);
« no previous file with comments | « no previous file | Source/core/editing/DragCaretController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698