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

Unified Diff: Source/core/html/HTMLFormElement.h

Issue 216523002: Oilpan: Replace most of RefPtrs for Event objects with oilpan's transition types (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/core/html/HTMLFormElement.h
diff --git a/Source/core/html/HTMLFormElement.h b/Source/core/html/HTMLFormElement.h
index 4af4cfe0702539074c3fbe41ffde9716bf72d86b..bcff831b2393cd6ed40888a93e3cf1f29829112e 100644
--- a/Source/core/html/HTMLFormElement.h
+++ b/Source/core/html/HTMLFormElement.h
@@ -179,7 +179,7 @@ private:
void requestAutocompleteTimerFired(Timer<HTMLFormElement>*);
- Vector<RefPtr<Event> > m_pendingAutocompleteEvents;
+ WillBePersistentHeapVector<RefPtrWillBeMember<Event> > m_pendingAutocompleteEvents;
Timer<HTMLFormElement> m_requestAutocompleteTimer;
};

Powered by Google App Engine
This is Rietveld 408576698