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

Unified Diff: third_party/WebKit/Source/core/html/HTMLPlugInElement.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/core/html/HTMLPlugInElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLPlugInElement.h b/third_party/WebKit/Source/core/html/HTMLPlugInElement.h
index 6bb530b6c7e34785a167085af8825dc23c2e66cc..197ceac49bcd8a738fb52ad5231250a036e1d5be 100644
--- a/third_party/WebKit/Source/core/html/HTMLPlugInElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLPlugInElement.h
@@ -97,7 +97,7 @@ protected:
String m_serviceType;
String m_url;
KURL m_loadedUrl;
- OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader;
+ Member<HTMLImageLoader> m_imageLoader;
bool m_isDelayingLoadEvent;
private:
@@ -149,7 +149,7 @@ private:
// prevent confusing code which may assume that widget() != null
// means the frame is active, we save off m_widget here while
// the plugin is persisting but not being displayed.
- RefPtrWillBeMember<Widget> m_persistedPluginWidget;
+ Member<Widget> m_persistedPluginWidget;
};
inline bool isHTMLPlugInElement(const HTMLElement& element)

Powered by Google App Engine
This is Rietveld 408576698