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

Unified Diff: Source/web/WebPluginScrollbarImpl.h

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Switch LocalFrame::m_pluginElements rep to HashSet<HTMLPlugInElement*> Created 6 years, 2 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: Source/web/WebPluginScrollbarImpl.h
diff --git a/Source/web/WebPluginScrollbarImpl.h b/Source/web/WebPluginScrollbarImpl.h
index 07d37b556e8c231a05be87a6c52da2628daf5b8a..cae27062491c5c6053432d06fb308fa771902a90 100644
--- a/Source/web/WebPluginScrollbarImpl.h
+++ b/Source/web/WebPluginScrollbarImpl.h
@@ -25,8 +25,8 @@
#ifndef WebPluginScrollbarImpl_h
#define WebPluginScrollbarImpl_h
+#include "platform/heap/Handle.h"
#include "public/web/WebPluginScrollbar.h"
-
#include "wtf/RefPtr.h"
#include "wtf/Vector.h"
@@ -92,7 +92,7 @@ private:
WebPluginScrollbarClient* m_client;
int m_scrollOffset;
- RefPtr<Scrollbar> m_scrollbar;
+ RefPtrWillBePersistent<Scrollbar> m_scrollbar;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698