| Index: Source/web/LinkHighlight.cpp
|
| diff --git a/Source/web/LinkHighlight.cpp b/Source/web/LinkHighlight.cpp
|
| index 8489b0df65e90f35aca5090012bc7c5fc0576e9a..4f32739267b200111858fb60827d2639405447fc 100644
|
| --- a/Source/web/LinkHighlight.cpp
|
| +++ b/Source/web/LinkHighlight.cpp
|
| @@ -52,7 +52,7 @@
|
|
|
| using namespace WebCore;
|
|
|
| -namespace WebKit {
|
| +namespace blink {
|
|
|
| class WebViewImpl;
|
|
|
| @@ -269,7 +269,7 @@ void LinkHighlight::startHighlightAnimationIfNeeded()
|
| if (extraDurationRequired)
|
| curve->add(WebFloatKeyframe(extraDurationRequired, startOpacity));
|
| // For layout tests we don't fade out.
|
| - curve->add(WebFloatKeyframe(fadeDuration + extraDurationRequired, WebKit::layoutTestMode() ? startOpacity : 0));
|
| + curve->add(WebFloatKeyframe(fadeDuration + extraDurationRequired, blink::layoutTestMode() ? startOpacity : 0));
|
|
|
| OwnPtr<WebAnimation> animation = adoptPtr(compositorSupport->createAnimation(*curve, WebAnimation::TargetPropertyOpacity));
|
|
|
|
|