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

Unified Diff: third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h

Issue 2915193002: [DMC #28] Rename TextMatchMarker::State to LayoutStatus (Closed)
Patch Set: Rebase Created 3 years, 7 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 | third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698