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

Unified Diff: Source/bindings/scripts/CodeGeneratorV8.pm

Issue 18916003: Performance.onwebkitresourcetimingbufferfull should be a Function (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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/scripts/CodeGeneratorV8.pm
diff --git a/Source/bindings/scripts/CodeGeneratorV8.pm b/Source/bindings/scripts/CodeGeneratorV8.pm
index eb243b6762c798c918f7e64ba1d847c8443dce84..a7a253defa1c2cd7f284c70f1569a15b70eb4c4c 100644
--- a/Source/bindings/scripts/CodeGeneratorV8.pm
+++ b/Source/bindings/scripts/CodeGeneratorV8.pm
@@ -5651,6 +5651,7 @@ sub IsCallbackFunctionType
my $type = shift;
return 1 if $callbackFunctionTypeHash{$type};
+ return 1 if $type eq "Function";
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698