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

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 aa71694b085dd1ede35f371524e17477f6fe1c06..0e741a75cbf21d852b42bcc25808e0c380270832 100644
--- a/Source/core/html/HTMLFormElement.h
+++ b/Source/core/html/HTMLFormElement.h
@@ -180,7 +180,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