| Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| index e4402ca53b6f184c7597962f2942287aa310573e..1b5ca74b866fff9cd404898b17106bbdb63c959f 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -2162,7 +2162,7 @@ Color ComputedStyle::colorIncludingFallback(int colorProperty,
|
|
|
| Color ComputedStyle::visitedDependentColor(int colorProperty) const {
|
| Color unvisitedColor = colorIncludingFallback(colorProperty, false);
|
| - if (insideLink() != InsideVisitedLink)
|
| + if (insideLink() != EInsideLink::kInsideVisitedLink)
|
| return unvisitedColor;
|
|
|
| Color visitedColor = colorIncludingFallback(colorProperty, true);
|
|
|