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

Unified Diff: Source/core/page/ContextMenuController.h

Issue 413903004: Oilpan: Change Persistent<> data members to Member<> in HitTestResult. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 5 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
« no previous file with comments | « no previous file | Source/core/page/ContextMenuController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/ContextMenuController.h
diff --git a/Source/core/page/ContextMenuController.h b/Source/core/page/ContextMenuController.h
index 6ba0a9217f9accfec9f2602d31ee260bfeb828f9..5ea8a9c90be089a3e6c53368ecf4f0fb468e88eb 100644
--- a/Source/core/page/ContextMenuController.h
+++ b/Source/core/page/ContextMenuController.h
@@ -43,11 +43,12 @@ namespace blink {
class LocalFrame;
class Page;
- class ContextMenuController {
- WTF_MAKE_NONCOPYABLE(ContextMenuController); WTF_MAKE_FAST_ALLOCATED;
+ class ContextMenuController : public NoBaseWillBeGarbageCollectedFinalized<ContextMenuController> {
+ WTF_MAKE_NONCOPYABLE(ContextMenuController); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
- static PassOwnPtr<ContextMenuController> create(Page*, ContextMenuClient*);
+ static PassOwnPtrWillBeRawPtr<ContextMenuController> create(Page*, ContextMenuClient*);
~ContextMenuController();
+ void trace(Visitor*);
ContextMenu* contextMenu() const { return m_contextMenu.get(); }
void clearContextMenu();
« no previous file with comments | « no previous file | Source/core/page/ContextMenuController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698