Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2107)

Unified Diff: Source/web/FrameLoaderClientImpl.h

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Support renderer-less plugin disposal Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/web/FrameLoaderClientImpl.h
diff --git a/Source/web/FrameLoaderClientImpl.h b/Source/web/FrameLoaderClientImpl.h
index b7a157a2b71371fdc8ee4644b25430c862bc9d54..a39dcb9824ae4cdfaa2a6a071ef12ed2cdf85679 100644
--- a/Source/web/FrameLoaderClientImpl.h
+++ b/Source/web/FrameLoaderClientImpl.h
@@ -118,11 +118,11 @@ public:
virtual void transitionToCommittedForNewPage() override;
virtual PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const KURL&, const WTF::AtomicString& name, HTMLFrameOwnerElement*) override;
virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const;
- virtual PassRefPtr<Widget> createPlugin(
+ virtual PassRefPtrWillBeRawPtr<Widget> createPlugin(
HTMLPlugInElement*, const KURL&,
const Vector<WTF::String>&, const Vector<WTF::String>&,
const WTF::String&, bool loadManually, DetachedPluginPolicy) override;
- virtual PassRefPtr<Widget> createJavaAppletWidget(
+ virtual PassRefPtrWillBeRawPtr<Widget> createJavaAppletWidget(
HTMLAppletElement*,
const KURL& /* base_url */,
const Vector<WTF::String>& paramNames,

Powered by Google App Engine
This is Rietveld 408576698