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

Unified Diff: Source/core/dom/PositionIterator.h

Issue 20681004: Make first-letter style to work with editing Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-08-08T13:29:08 Created 7 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
Index: Source/core/dom/PositionIterator.h
diff --git a/Source/core/dom/PositionIterator.h b/Source/core/dom/PositionIterator.h
index 6587f7eb0a54ebe3dc5da5b4352aaf6f093d0242..bde811a749d8ae33735959cedba440058eb1ea12 100644
--- a/Source/core/dom/PositionIterator.h
+++ b/Source/core/dom/PositionIterator.h
@@ -31,6 +31,8 @@
namespace WebCore {
+class RenderObject;
+
// A Position iterator with constant-time
// increment, decrement, and several predicates on the Position it is at.
// Conversion to/from Position is O(n) in the offset.
@@ -56,6 +58,7 @@ public:
Node* node() const { return m_anchorNode; }
int offsetInLeafNode() const { return m_offsetInAnchor; }
+ RenderObject* renderer() const;
bool atStart() const;
bool atEnd() const;

Powered by Google App Engine
This is Rietveld 408576698