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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/modules/indexeddb/IDBEventDispatcher.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h b/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h
index ba4c3ffc5285bcc902964a3f2c3d0c91b97b075f..b0b8ea7aca71d97a18538b5dcaacca7c97c115d8 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h
@@ -42,7 +42,7 @@ class EventTarget;
class IDBEventDispatcher {
STATIC_ONLY(IDBEventDispatcher);
public:
- static bool dispatch(Event*, WillBeHeapVector<RefPtrWillBeMember<EventTarget>>&); // The target first and then its ancestors in order of how the event bubbles.
+ static bool dispatch(Event*, HeapVector<Member<EventTarget>>&); // The target first and then its ancestors in order of how the event bubbles.
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698