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

Unified Diff: third_party/WebKit/Source/core/events/TouchEventContext.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/TouchEventContext.h
diff --git a/third_party/WebKit/Source/core/events/TouchEventContext.h b/third_party/WebKit/Source/core/events/TouchEventContext.h
index d7ebe2019fa05938b65b42d30501346a3cec1aec..2f0ca07a0cbe249519c1efd38b29a04eb2e2ad87 100644
--- a/third_party/WebKit/Source/core/events/TouchEventContext.h
+++ b/third_party/WebKit/Source/core/events/TouchEventContext.h
@@ -37,10 +37,9 @@ namespace blink {
class Event;
class TouchList;
-class TouchEventContext : public RefCountedWillBeGarbageCollected<TouchEventContext> {
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(TouchEventContext);
+class TouchEventContext : public GarbageCollected<TouchEventContext> {
public:
- static PassRefPtrWillBeRawPtr<TouchEventContext> create();
+ static RawPtr<TouchEventContext> create();
void handleLocalEvents(Event&) const;
TouchList& touches() { return *m_touches; }
TouchList& targetTouches() { return *m_targetTouches; }
@@ -51,9 +50,9 @@ public:
private:
TouchEventContext();
- RefPtrWillBeMember<TouchList> m_touches;
- RefPtrWillBeMember<TouchList> m_targetTouches;
- RefPtrWillBeMember<TouchList> m_changedTouches;
+ Member<TouchList> m_touches;
+ Member<TouchList> m_targetTouches;
+ Member<TouchList> m_changedTouches;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/events/TouchEvent.cpp ('k') | third_party/WebKit/Source/core/events/TouchEventContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698