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

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

Issue 103473002: Manage WebSQL callbacks with OwnPtr instead of refcounting (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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/code_generator_v8.pm
diff --git a/Source/bindings/scripts/code_generator_v8.pm b/Source/bindings/scripts/code_generator_v8.pm
index d19b273811774295ffbfcc69698a24f6f3db561c..f1ad3fa9f0337d0ffe9de2cbfab15098dff1e149 100644
--- a/Source/bindings/scripts/code_generator_v8.pm
+++ b/Source/bindings/scripts/code_generator_v8.pm
@@ -6433,14 +6433,6 @@ sub NeedsSpecialWrap
sub IsLegacyRefCountedCallback
{
my $name = shift;
- # WebSQL
- return 1 if $name eq "DatabaseCallback";
- return 1 if $name eq "SQLTransactionCallback";
- return 1 if $name eq "SQLTransactionErrorCallback";
- return 1 if $name eq "SQLTransactionSyncCallback";
- return 1 if $name eq "SQLStatementCallback";
- return 1 if $name eq "SQLStatementErrorCallback";
- return 1 if $name eq "SQLVoidCallback";
# Filesystem
return 1 if $name eq "EntryCallback";
return 1 if $name eq "EntriesCallback";
« no previous file with comments | « no previous file | Source/bindings/v8/custom/V8SQLTransactionCustom.cpp » ('j') | Source/core/inspector/InspectorDatabaseAgent.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698