| Index: third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
|
| diff --git a/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h b/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
|
| index 1be6394d152abe14833609a25ca1a441f553b262..e940484e5313eb882c2a961c790f793f20ff1e0b 100644
|
| --- a/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
|
| +++ b/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
|
| @@ -30,17 +30,14 @@
|
| #include "core/CoreExport.h"
|
| #include "core/dom/Range.h"
|
| #include "core/editing/iterators/ForwardsTextBuffer.h"
|
| -#include "core/editing/iterators/TextIteratorBehavior.h"
|
| #include "platform/wtf/text/WTFString.h"
|
|
|
| namespace blink {
|
|
|
| -class TextIteratorBehavior;
|
| -
|
| class CORE_EXPORT TextIteratorTextState
|
| : public GarbageCollectedFinalized<TextIteratorTextState> {
|
| public:
|
| - explicit TextIteratorTextState(const TextIteratorBehavior&);
|
| + TextIteratorTextState() {}
|
| ~TextIteratorTextState() {}
|
|
|
| // Return properties of the current text.
|
| @@ -107,8 +104,6 @@ class CORE_EXPORT TextIteratorTextState
|
| bool has_emitted_ = false;
|
| UChar last_character_ = 0;
|
|
|
| - const TextIteratorBehavior behavior_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(TextIteratorTextState);
|
| };
|
|
|
|
|