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

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

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 | « Source/bindings/core/v8/V8Binding.h ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8Binding.cpp
diff --git a/Source/bindings/core/v8/V8Binding.cpp b/Source/bindings/core/v8/V8Binding.cpp
index bb21a8341ed37ba93beab866d7377d7d2478b477..e5ec7fdcdf3d213870455a87f3ee51f592e899f6 100644
--- a/Source/bindings/core/v8/V8Binding.cpp
+++ b/Source/bindings/core/v8/V8Binding.cpp
@@ -909,4 +909,20 @@ PassRefPtr<TraceEvent::ConvertableToTraceFormat> devToolsTraceEventData(Executio
return InspectorFunctionCallEvent::data(context, scriptId, resourceName, lineNumber);
}
+v8::Local<v8::Value> v8DoneIteratorResult(v8::Isolate* isolate)
+{
+ v8::Local<v8::Object> result = v8::Object::New(isolate);
+ result->Set(v8String(isolate, "value"), v8::Undefined(isolate));
+ result->Set(v8String(isolate, "done"), v8Boolean(true, isolate));
+ return result;
+}
+
+v8::Local<v8::Value> v8IteratorResult(v8::Isolate* isolate, v8::Handle<v8::Value> value)
+{
+ v8::Local<v8::Object> result = v8::Object::New(isolate);
+ result->Set(v8String(isolate, "value"), value);
+ result->Set(v8String(isolate, "done"), v8Boolean(false, isolate));
+ return result;
+}
+
} // namespace blink
« no previous file with comments | « Source/bindings/core/v8/V8Binding.h ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698