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

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, 10 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 e42c201323ebfc0538eeb349c9fa8f3059a23ef9..fa2e4107a54b63ebce498fade577d25cca99489e 100644
--- a/third_party/WebKit/Source/core/html/HTMLPlugInElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLPlugInElement.h
@@ -96,7 +96,7 @@ protected:
String m_serviceType;
String m_url;
KURL m_loadedUrl;
- OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader;
+ Member<HTMLImageLoader> m_imageLoader;
bool m_isDelayingLoadEvent;
private:
@@ -144,7 +144,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