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

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

Issue 13799007: Support for selective DOM activity logging, based on IDL attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed two superfluous in attributes in the IDL. Created 7 years, 8 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
Index: Source/bindings/v8/V8Binding.h
diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
index 5ab2b16ecb0b2951993d0dd58b7c17ae8c18c839..5b8ed969ed94708114c40b9d545d2e91a61299e9 100644
--- a/Source/bindings/v8/V8Binding.h
+++ b/Source/bindings/v8/V8Binding.h
@@ -394,6 +394,16 @@ namespace WebCore {
return result;
}
+ template <class T>
+ Vector<T> toVectorOfArguments(const v8::Arguments& args)
haraken 2013/04/11 00:59:16 This doesn't need to be a template, since a type o
ulfar 2013/04/11 03:25:15 Inlining this might lead to some code size increas
+ {
+ Vector<T> result;
+ int length = args.Length();
haraken 2013/04/11 00:59:16 Nit: int => size_t
ulfar 2013/04/11 03:25:15 Done.
+ for (int i = 0; i < length; ++i)
haraken 2013/04/11 00:59:16 Nit: int => size_t
ulfar 2013/04/11 03:25:15 Done.
+ result.append(args[i]);
+ return result;
+ }
+
// Validates that the passed object is a sequence type per WebIDL spec
// http://www.w3.org/TR/2012/WD-WebIDL-20120207/#es-sequence
inline v8::Handle<v8::Value> toV8Sequence(v8::Handle<v8::Value> value, uint32_t& length, v8::Isolate* isolate)
« Source/bindings/scripts/IDLAttributes.txt ('K') | « Source/bindings/scripts/IDLAttributes.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698