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

Unified Diff: Source/bindings/v8/Dictionary.h

Issue 163493003: Revert of Move speech module over to Oilpan. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | Source/bindings/v8/Dictionary.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/Dictionary.h
diff --git a/Source/bindings/v8/Dictionary.h b/Source/bindings/v8/Dictionary.h
index cecd3efd11c797236ba6d068103d283bfb4c82d3..fff0cfa28c754e2d4ab63f0c45090259d36c9a64 100644
--- a/Source/bindings/v8/Dictionary.h
+++ b/Source/bindings/v8/Dictionary.h
@@ -88,8 +88,8 @@
bool get(const String&, RefPtr<MediaKeyError>&) const;
bool get(const String&, RefPtr<TrackBase>&) const;
bool get(const String&, RefPtr<SpeechRecognitionError>&) const;
- bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResult>&) const;
- bool get(const String&, RefPtrWillBeRawPtr<SpeechRecognitionResultList>&) const;
+ bool get(const String&, RefPtr<SpeechRecognitionResult>&) const;
+ bool get(const String&, RefPtr<SpeechRecognitionResultList>&) const;
bool get(const String&, RefPtr<MediaStream>&) const;
bool get(const String&, RefPtr<EventTarget>&) const;
bool get(const String&, HashSet<AtomicString>&) const;
@@ -153,16 +153,14 @@
bool convert(ConversionContext&, const String&, ScriptValue&) const;
template<typename IntegralType>
- bool convert(ConversionContext&, const String&, IntegralType&) const;
- bool convert(ConversionContext&, const String&, MessagePortArray&) const;
- bool convert(ConversionContext&, const String&, HashSet<AtomicString>&) const;
- bool convert(ConversionContext&, const String&, Dictionary&) const;
- bool convert(ConversionContext&, const String&, Vector<String>&) const;
- bool convert(ConversionContext&, const String&, ArrayValue&) const;
+ bool convert(ConversionContext &, const String&, IntegralType&) const;
+ bool convert(ConversionContext &, const String&, MessagePortArray&) const;
+ bool convert(ConversionContext &, const String&, HashSet<AtomicString>&) const;
+ bool convert(ConversionContext &, const String&, Dictionary&) const;
+ bool convert(ConversionContext &, const String&, Vector<String>&) const;
+ bool convert(ConversionContext &, const String&, ArrayValue&) const;
template<typename T>
- bool convert(ConversionContext&, const String&, RefPtr<T>&) const;
- template<typename T>
- bool convert(ConversionContext&, const String&, RawPtr<T>&) const;
+ bool convert(ConversionContext &, const String&, RefPtr<T>&) const;
template<typename StringType>
bool getStringType(const String&, StringType&) const;
@@ -323,25 +321,6 @@
return false;
}
-template<typename T> bool Dictionary::convert(ConversionContext& context, const String& key, RawPtr<T>& value) const
-{
- ConversionContextScope scope(context);
-
- if (!get(key, value))
- return true;
-
- if (value)
- return true;
-
- v8::Local<v8::Value> v8Value;
- getKey(key, v8Value);
- if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value))
- return true;
-
- context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does not have a " + context.typeName() + " type."));
- return false;
}
-}
-
#endif // Dictionary_h
« no previous file with comments | « no previous file | Source/bindings/v8/Dictionary.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698