| Index: third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| index 63aa6257df8be812fce5d7bf389217b17eacd5d9..b4ed20b8d42f476ded78de15c0672f4bd150a25f 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| @@ -171,8 +171,8 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
|
| unsigned oldLength,
|
| unsigned newLength) const;
|
|
|
| - // Offset modifications are done by DocumentMarkerController.
|
| - // Other classes should not call following setters.
|
| + // Offset modifications are done by DocumentMarkerController and subclasses of
|
| + // DocumentMarkerList. Other classes should not call following setters.
|
| void setStartOffset(unsigned offset) { m_startOffset = offset; }
|
| void setEndOffset(unsigned offset) { m_endOffset = offset; }
|
| void shiftOffsets(int delta);
|
|
|