| 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)
|
|
|