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

Unified Diff: Source/bindings/core/v8/V8Binding.h

Issue 513203002: Introduce MIDIInputMap and MIDIOutputMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@iterator-adhoc
Patch Set: rebase Created 6 years, 3 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 | « LayoutTests/webmidi/send_messages.html ('k') | Source/bindings/core/v8/V8Binding.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8Binding.h
diff --git a/Source/bindings/core/v8/V8Binding.h b/Source/bindings/core/v8/V8Binding.h
index 4c57f6efec798422a1517e29cc192a35c6e50f9a..c63c452fd187692b76434bf3749da087fa2f28c9 100644
--- a/Source/bindings/core/v8/V8Binding.h
+++ b/Source/bindings/core/v8/V8Binding.h
@@ -209,10 +209,14 @@ inline v8::Handle<v8::Value> v8Undefined()
return v8::Handle<v8::Value>();
}
-// Converts a DOM object to a v8 value.
-// This is a no-inline version of toV8(). If you want to call toV8()
-// without creating #include cycles, you can use this function instead.
-// Each specialized implementation will be generated.
+// Converts a DOM object to a v8 value. This function is intended to be used
+// internally. If you want to convert a DOM object to a V8 value,
+// - Use toV8 if you can include V8X.h.
+// - Use V8ValueTraits<T>::toV8Value if you cannot include V8X.h.
+// Note: Including bindings/{core, modules}/v8/V8*.h from core and modules
+// is fine. In such a case, perhaps toV8 is what you want.
+// Note: toV8NoInline is a non-inline toV8 and V8ValueTraits::toV8Value offers
+// more: You can handle value conversion generally with it.
template<typename T>
v8::Handle<v8::Value> toV8NoInline(T* impl, v8::Handle<v8::Object> creationContext, v8::Isolate*);
@@ -960,6 +964,17 @@ private:
v8::TryCatch& m_block;
};
+// Returns an object representing {done: true, value: undefined}.
+v8::Local<v8::Value> v8DoneIteratorResult(v8::Isolate*);
+
+// Returns an object representing {done: false, value: |value|}.
+v8::Local<v8::Value> v8IteratorResult(v8::Isolate*, v8::Handle<v8::Value>);
+template <typename T>
+v8::Local<v8::Value> v8IteratorResult(ScriptState* scriptState, const T& value)
+{
+ return v8IteratorResult(scriptState->isolate(), V8ValueTraits<T>::toV8Value(value, scriptState->context()->Global(), scriptState->isolate()));
+}
+
} // namespace blink
#endif // V8Binding_h
« no previous file with comments | « LayoutTests/webmidi/send_messages.html ('k') | Source/bindings/core/v8/V8Binding.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698