| Index: third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
|
| index dd9908cfe892c85e8d05ef4b72ce10dc2b3c705d..9036dd25c02d0e1aeb150e0bacd624599a317dcc 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
|
| @@ -38,7 +38,7 @@ namespace blink {
|
| // up-to-date.
|
| class CORE_EXPORT TextMatchMarker final : public DocumentMarker {
|
| private:
|
| - enum class State { kInvalid, kValidNull, kValidNotNull };
|
| + enum class LayoutStatus { kInvalid, kValidNull, kValidNotNull };
|
|
|
| public:
|
| enum class MatchStatus { kInactive, kActive };
|
| @@ -62,8 +62,8 @@ class CORE_EXPORT TextMatchMarker final : public DocumentMarker {
|
|
|
| private:
|
| MatchStatus match_status_;
|
| + LayoutStatus layout_status_ = LayoutStatus::kInvalid;
|
| LayoutRect rendered_rect_;
|
| - State layout_state_ = State::kInvalid;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TextMatchMarker);
|
| };
|
|
|