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

Unified Diff: third_party/WebKit/Source/core/dom/VisitedLinkState.h

Issue 2633633003: Changed EInsideLink to an enum class with an unsigned type. (Closed)
Patch Set: Rebase. Created 3 years, 11 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: third_party/WebKit/Source/core/dom/VisitedLinkState.h
diff --git a/third_party/WebKit/Source/core/dom/VisitedLinkState.h b/third_party/WebKit/Source/core/dom/VisitedLinkState.h
index ebe3a6ad7171ee527b460dbbdb75b46bf87b0a58..284b979de6081d3c28c30318cd6eba7102ecf583 100644
--- a/third_party/WebKit/Source/core/dom/VisitedLinkState.h
+++ b/third_party/WebKit/Source/core/dom/VisitedLinkState.h
@@ -52,7 +52,7 @@ class VisitedLinkState : public GarbageCollectedFinalized<VisitedLinkState> {
EInsideLink determineLinkState(const Element& element) {
if (element.isLink())
return determineLinkStateSlowCase(element);
- return NotInsideLink;
+ return EInsideLink::kNotInsideLink;
}
DECLARE_TRACE();
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp ('k') | third_party/WebKit/Source/core/dom/VisitedLinkState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698