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

Unified Diff: Source/modules/gamepad/GamepadEvent.h

Issue 208743011: Oilpan: Change persistent handles in the Event hierarchy to members (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/modules/gamepad/GamepadEvent.h
diff --git a/Source/modules/gamepad/GamepadEvent.h b/Source/modules/gamepad/GamepadEvent.h
index 0c966644ffc51183b08d2605e0361a41b7bfaf17..dcadc573369198169b8f77d2f0028bf28925b036 100644
--- a/Source/modules/gamepad/GamepadEvent.h
+++ b/Source/modules/gamepad/GamepadEvent.h
@@ -43,7 +43,7 @@ private:
GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Gamepad>);
GamepadEvent(const AtomicString&, const GamepadEventInit&);
- RefPtrWillBePersistent<Gamepad> m_gamepad;
+ RefPtrWillBeMember<Gamepad> m_gamepad;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698