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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after
902 902
903 PassRefPtr<TraceEvent::ConvertableToTraceFormat> devToolsTraceEventData(Executio nContext* context, v8::Handle<v8::Function> function, v8::Isolate* isolate) 903 PassRefPtr<TraceEvent::ConvertableToTraceFormat> devToolsTraceEventData(Executio nContext* context, v8::Handle<v8::Function> function, v8::Isolate* isolate)
904 { 904 {
905 int scriptId = 0; 905 int scriptId = 0;
906 String resourceName; 906 String resourceName;
907 int lineNumber = 1; 907 int lineNumber = 1;
908 GetDevToolsFunctionInfo(function, isolate, scriptId, resourceName, lineNumbe r); 908 GetDevToolsFunctionInfo(function, isolate, scriptId, resourceName, lineNumbe r);
909 return InspectorFunctionCallEvent::data(context, scriptId, resourceName, lin eNumber); 909 return InspectorFunctionCallEvent::data(context, scriptId, resourceName, lin eNumber);
910 } 910 }
911 911
912 v8::Local<v8::Value> v8DoneIteratorResult(v8::Isolate* isolate)
913 {
914 v8::Local<v8::Object> result = v8::Object::New(isolate);
915 result->Set(v8String(isolate, "value"), v8::Undefined(isolate));
916 result->Set(v8String(isolate, "done"), v8Boolean(true, isolate));
917 return result;
918 }
919
920 v8::Local<v8::Value> v8IteratorResult(v8::Isolate* isolate, v8::Handle<v8::Value > value)
921 {
922 v8::Local<v8::Object> result = v8::Object::New(isolate);
923 result->Set(v8String(isolate, "value"), value);
924 result->Set(v8String(isolate, "done"), v8Boolean(false, isolate));
925 return result;
926 }
927
912 } // namespace blink 928 } // namespace blink
OLDNEW
« 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