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

Unified Diff: Source/bindings/modules/v8/DictionaryHelperForModules.cpp

Issue 384633002: Oilpan: add transition types to remaining Fetch and ServiceWorker objects (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Another rebase Created 6 years, 5 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
« no previous file with comments | « no previous file | Source/modules/serviceworkers/Client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/modules/v8/DictionaryHelperForModules.cpp
diff --git a/Source/bindings/modules/v8/DictionaryHelperForModules.cpp b/Source/bindings/modules/v8/DictionaryHelperForModules.cpp
index 38c31df621115d799875f1f21ce728691e9ad937..931123fd3239cd204d8ec99c45d1053cc97bd4d9 100644
--- a/Source/bindings/modules/v8/DictionaryHelperForModules.cpp
+++ b/Source/bindings/modules/v8/DictionaryHelperForModules.cpp
@@ -77,14 +77,13 @@ template bool DictionaryHelper::get(const Dictionary&, const String& key, Member
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<SpeechRecognitionResultList>& value);
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Gamepad>& value);
template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<MediaStream>& value);
-template bool DictionaryHelper::get(const Dictionary&, const String& key, RefPtr<Headers>& value);
+template bool DictionaryHelper::get(const Dictionary&, const String& key, RefPtrWillBeMember<Headers>& value);
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<MIDIPort>& value);
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<SpeechRecognitionResult>& value);
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<SpeechRecognitionResultList>& value);
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<Gamepad>& value);
template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<MediaStream>& value);
-template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, RefPtr<Headers>& value);
+template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, RefPtrWillBeMember<Headers>& value);
} // namespace WebCore
-
« no previous file with comments | « no previous file | Source/modules/serviceworkers/Client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698