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

Unified Diff: third_party/WebKit/Source/core/events/WindowEventContext.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/events/WindowEventContext.h
diff --git a/third_party/WebKit/Source/core/events/WindowEventContext.h b/third_party/WebKit/Source/core/events/WindowEventContext.h
index 55109fc6fcf7523252b95ac19584d62b26aed373..3f45512c6c8d87dce2ca84c3e5a5facf3067d5df 100644
--- a/third_party/WebKit/Source/core/events/WindowEventContext.h
+++ b/third_party/WebKit/Source/core/events/WindowEventContext.h
@@ -38,8 +38,7 @@ class Event;
class Node;
class NodeEventContext;
-class WindowEventContext : public NoBaseWillBeGarbageCollected<WindowEventContext> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(WindowEventContext);
+class WindowEventContext : public GarbageCollected<WindowEventContext> {
WTF_MAKE_NONCOPYABLE(WindowEventContext);
public:
WindowEventContext(Event&, const NodeEventContext& topNodeEventContext);
@@ -51,8 +50,8 @@ public:
DECLARE_TRACE();
private:
- RefPtrWillBeMember<LocalDOMWindow> m_window;
- RefPtrWillBeMember<EventTarget> m_target;
+ Member<LocalDOMWindow> m_window;
+ Member<EventTarget> m_target;
};
inline LocalDOMWindow* WindowEventContext::window() const
« no previous file with comments | « third_party/WebKit/Source/core/events/WheelEvent.cpp ('k') | third_party/WebKit/Source/core/fetch/CSSStyleSheetResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698