| Index: third_party/WebKit/Source/web/WebFrameSerializerImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrameSerializerImpl.cpp b/third_party/WebKit/Source/web/WebFrameSerializerImpl.cpp
|
| index 7d75fb313a7028485055d50ef58df4cae6b089cb..92a47a792bcceee07e2d9b6621b61ea9909f2c6e 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameSerializerImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrameSerializerImpl.cpp
|
| @@ -83,6 +83,7 @@
|
| #include "core/dom/Element.h"
|
| #include "core/editing/serializers/Serialization.h"
|
| #include "core/frame/FrameSerializer.h"
|
| +#include "core/frame/WebLocalFrameBase.h"
|
| #include "core/html/HTMLAllCollection.h"
|
| #include "core/html/HTMLElement.h"
|
| #include "core/html/HTMLFormElement.h"
|
| @@ -95,7 +96,6 @@
|
| #include "platform/wtf/text/TextEncoding.h"
|
| #include "public/platform/WebCString.h"
|
| #include "public/platform/WebVector.h"
|
| -#include "web/WebLocalFrameImpl.h"
|
|
|
| namespace blink {
|
|
|
| @@ -445,7 +445,7 @@ WebFrameSerializerImpl::WebFrameSerializerImpl(
|
| xml_entities_(true) {
|
| // Must specify available webframe.
|
| DCHECK(frame);
|
| - specified_web_local_frame_impl_ = ToWebLocalFrameImpl(frame);
|
| + specified_web_local_frame_impl_ = ToWebLocalFrameBase(frame);
|
| // Make sure we have non null client and delegate.
|
| DCHECK(client);
|
| DCHECK(delegate);
|
|
|