| Index: third_party/WebKit/Source/web/WebFrameImplBase.h
|
| diff --git a/third_party/WebKit/Source/web/WebFrameImplBase.h b/third_party/WebKit/Source/web/WebFrameImplBase.h
|
| index 9b5367c5772e99afffb85eac4e3bf66b5ab266b2..8134801532a4b81a16d6ba6cc28012074556980d 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameImplBase.h
|
| +++ b/third_party/WebKit/Source/web/WebFrameImplBase.h
|
| @@ -12,8 +12,8 @@
|
| namespace blink {
|
|
|
| class Frame;
|
| -class FrameHost;
|
| class FrameOwner;
|
| +class Page;
|
|
|
| // WebFrameImplBase exists to avoid the diamond inheritance problem:
|
| // - The public interfaces WebLocalFrame/WebRemoteFrame extend WebFrame.
|
| @@ -33,7 +33,7 @@ class WEB_EXPORT WebFrameImplBase
|
| public:
|
| virtual ~WebFrameImplBase();
|
|
|
| - virtual void initializeCoreFrame(FrameHost*,
|
| + virtual void initializeCoreFrame(Page&,
|
| FrameOwner*,
|
| const AtomicString& name) = 0;
|
| // TODO(dcheng): Rename this to coreFrame()? This probably also shouldn't be
|
|
|