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

Side by Side 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: Fix RefPtr/OwnPtr transition gcc errors 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/bindings/v8/custom/V8SQLTransactionCustom.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 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> 1 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> 2 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com>
3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> 4 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org>
5 # Copyright (C) 2006 Apple Computer, Inc. 5 # Copyright (C) 2006 Apple Computer, Inc.
6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc. 6 # Copyright (C) 2007, 2008, 2009, 2012 Google Inc.
7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> 7 # Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au>
8 # Copyright (C) Research In Motion Limited 2010. All rights reserved. 8 # Copyright (C) Research In Motion Limited 2010. All rights reserved.
9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 # Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 # Copyright (C) 2012 Ericsson AB. All rights reserved. 10 # Copyright (C) 2012 Ericsson AB. All rights reserved.
(...skipping 6415 matching lines...) Expand 10 before | Expand all | Expand 10 after
6426 return 1 if $interface->extendedAttributes->{"SpecialWrapFor"}; 6426 return 1 if $interface->extendedAttributes->{"SpecialWrapFor"};
6427 return 1 if InheritsInterface($interface, "Document"); 6427 return 1 if InheritsInterface($interface, "Document");
6428 6428
6429 return 0; 6429 return 0;
6430 } 6430 }
6431 6431
6432 # FIXME: This list should go away entirely, see http://crbug.com/323681 6432 # FIXME: This list should go away entirely, see http://crbug.com/323681
6433 sub IsLegacyRefCountedCallback 6433 sub IsLegacyRefCountedCallback
6434 { 6434 {
6435 my $name = shift; 6435 my $name = shift;
6436 # WebSQL
6437 return 1 if $name eq "DatabaseCallback";
6438 return 1 if $name eq "SQLTransactionCallback";
6439 return 1 if $name eq "SQLTransactionErrorCallback";
6440 return 1 if $name eq "SQLTransactionSyncCallback";
6441 return 1 if $name eq "SQLStatementCallback";
6442 return 1 if $name eq "SQLStatementErrorCallback";
6443 return 1 if $name eq "SQLVoidCallback";
6444 # Filesystem 6436 # Filesystem
6445 return 1 if $name eq "EntryCallback"; 6437 return 1 if $name eq "EntryCallback";
6446 return 1 if $name eq "EntriesCallback"; 6438 return 1 if $name eq "EntriesCallback";
6447 return 1 if $name eq "ErrorCallback"; 6439 return 1 if $name eq "ErrorCallback";
6448 return 1 if $name eq "FileCallback"; 6440 return 1 if $name eq "FileCallback";
6449 return 1 if $name eq "FileSystemCallback"; 6441 return 1 if $name eq "FileSystemCallback";
6450 return 1 if $name eq "FileSystemVoidCallback"; 6442 return 1 if $name eq "FileSystemVoidCallback";
6451 return 1 if $name eq "FileWriterCallback"; 6443 return 1 if $name eq "FileWriterCallback";
6452 return 1 if $name eq "MetadataCallback"; 6444 return 1 if $name eq "MetadataCallback";
6453 return 0; 6445 return 0;
6454 } 6446 }
6455 6447
6456 1; 6448 1;
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/v8/custom/V8SQLTransactionCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698