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