| Index: third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp b/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| index 7caff5862b5ee46c6e5b23cab66a58e995d6f3b1..7ed22eb75d4791e9fb701f99b3513a8e0f3559b8 100644
|
| --- a/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| @@ -4,18 +4,18 @@
|
|
|
| #include "web/NavigatorContentUtilsClientImpl.h"
|
|
|
| +#include "core/frame/WebLocalFrameBase.h"
|
| #include "public/web/WebFrameClient.h"
|
| -#include "web/WebLocalFrameImpl.h"
|
|
|
| namespace blink {
|
|
|
| NavigatorContentUtilsClientImpl* NavigatorContentUtilsClientImpl::Create(
|
| - WebLocalFrameImpl* web_frame) {
|
| + WebLocalFrameBase* web_frame) {
|
| return new NavigatorContentUtilsClientImpl(web_frame);
|
| }
|
|
|
| NavigatorContentUtilsClientImpl::NavigatorContentUtilsClientImpl(
|
| - WebLocalFrameImpl* web_frame)
|
| + WebLocalFrameBase* web_frame)
|
| : web_frame_(web_frame) {}
|
|
|
| DEFINE_TRACE(NavigatorContentUtilsClientImpl) {
|
|
|