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

Unified Diff: third_party/WebKit/Source/web/WebPluginContainerImpl.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/web/WebPluginContainerImpl.h
diff --git a/third_party/WebKit/Source/web/WebPluginContainerImpl.h b/third_party/WebKit/Source/web/WebPluginContainerImpl.h
index 38867769228028a6c3ab8ef931bb21b8607efd01..89b26c6ea86cb1a30dac018d7c1b1d50bafe339b 100644
--- a/third_party/WebKit/Source/web/WebPluginContainerImpl.h
+++ b/third_party/WebKit/Source/web/WebPluginContainerImpl.h
@@ -62,12 +62,12 @@ struct WebPrintParams;
struct WebPrintPresetOptions;
class WEB_EXPORT WebPluginContainerImpl final : public PluginView, WTF_NON_EXPORTED_BASE(public WebPluginContainer), public LocalFrameLifecycleObserver {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WebPluginContainerImpl);
- WILL_BE_USING_PRE_FINALIZER(WebPluginContainerImpl, dispose);
+ USING_GARBAGE_COLLECTED_MIXIN(WebPluginContainerImpl);
+ USING_PRE_FINALIZER(WebPluginContainerImpl, dispose);
public:
- static PassRefPtrWillBeRawPtr<WebPluginContainerImpl> create(HTMLPlugInElement* element, WebPlugin* webPlugin)
+ static RawPtr<WebPluginContainerImpl> create(HTMLPlugInElement* element, WebPlugin* webPlugin)
{
- return adoptRefWillBeNoop(new WebPluginContainerImpl(element, webPlugin));
+ return new WebPluginContainerImpl(element, webPlugin);
}
// PluginView methods
@@ -194,7 +194,7 @@ private:
friend class WebPluginContainerTest;
- RawPtrWillBeMember<HTMLPlugInElement> m_element;
+ Member<HTMLPlugInElement> m_element;
WebPlugin* m_webPlugin;
WebLayer* m_webLayer;
« no previous file with comments | « third_party/WebKit/Source/web/WebPerformance.cpp ('k') | third_party/WebKit/Source/web/WebPluginContainerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698