| Index: third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| index b033e863f2c6dae2222cef9733dfeb9c4d33c1a8..85b0e06541e489ba137b0db4868c9b7b287a17b5 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| +++ b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| @@ -143,7 +143,7 @@ public:
|
| // that match any element on the frame.
|
| virtual void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) = 0;
|
|
|
| - virtual PassRefPtrWillBeRawPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const ResourceRequest&, const SubstituteData&) = 0;
|
| + virtual RawPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const ResourceRequest&, const SubstituteData&) = 0;
|
|
|
| virtual String userAgent() = 0;
|
|
|
| @@ -151,14 +151,14 @@ public:
|
|
|
| virtual void transitionToCommittedForNewPage() = 0;
|
|
|
| - virtual PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRequest&, const AtomicString& name, HTMLFrameOwnerElement*) = 0;
|
| + virtual RawPtr<LocalFrame> createFrame(const FrameLoadRequest&, const AtomicString& name, HTMLFrameOwnerElement*) = 0;
|
| // Whether or not plugin creation should fail if the HTMLPlugInElement isn't in the DOM after plugin initialization.
|
| enum DetachedPluginPolicy {
|
| FailOnDetachedPlugin,
|
| AllowDetachedPlugin,
|
| };
|
| virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const = 0;
|
| - virtual PassRefPtrWillBeRawPtr<Widget> createPlugin(HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool loadManually, DetachedPluginPolicy) = 0;
|
| + virtual RawPtr<Widget> createPlugin(HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool loadManually, DetachedPluginPolicy) = 0;
|
|
|
| virtual PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, WebMediaPlayer::LoadType, const WebURL&, WebMediaPlayerClient*) = 0;
|
|
|
|
|