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

Side by Side Diff: Source/bindings/scripts/CodeGeneratorV8.pm

Issue 78053006: [oilpan] Move IDBDatabase, IDBDatabaseCallbacks, IDBDatabaseBackendInterface and other related clas… (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/WebKit/chromium/tests/IDBTransactionTest.cpp ('k') | Source/heap/ThreadState.h » ('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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 "HTMLTableRowsCollection" => 1, 163 "HTMLTableRowsCollection" => 1,
164 "HTMLTableSectionElement" => 1, 164 "HTMLTableSectionElement" => 1,
165 "HTMLTagNodeList" => 1, 165 "HTMLTagNodeList" => 1,
166 "HTMLTemplateElement" => 1, 166 "HTMLTemplateElement" => 1,
167 "HTMLTextAreaElement" => 1, 167 "HTMLTextAreaElement" => 1,
168 "HTMLTitleElement" => 1, 168 "HTMLTitleElement" => 1,
169 "HTMLTrackElement" => 1, 169 "HTMLTrackElement" => 1,
170 "HTMLUListElement" => 1, 170 "HTMLUListElement" => 1,
171 "HTMLVideoElement" => 1, 171 "HTMLVideoElement" => 1,
172 "HTMLViewSourceDocument" => 1, 172 "HTMLViewSourceDocument" => 1,
173 "IDBCallbacks" => 1,
174 "IDBDatabase" => 1,
173 "IDBFactory" => 1, 175 "IDBFactory" => 1,
174 "IDBFactoryBackendInterface" => 1, 176 "IDBFactoryBackendInterface" => 1,
177 "IDBOpenDBRequest" => 1,
178 "IDBRequest" => 1,
175 "ImageDocument" => 1, 179 "ImageDocument" => 1,
176 "InputMethodContext" => 1, 180 "InputMethodContext" => 1,
177 "LabelsNodeList" => 1, 181 "LabelsNodeList" => 1,
178 "LiveNodeList" => 1, 182 "LiveNodeList" => 1,
179 "MediaDocument" => 1, 183 "MediaDocument" => 1,
180 "MediaList" => 1, 184 "MediaList" => 1,
181 "MediaQueryList" => 1, 185 "MediaQueryList" => 1,
182 "MediaQueryListListener" => 1, 186 "MediaQueryListListener" => 1,
183 "MediaQuerySet" => 1, 187 "MediaQuerySet" => 1,
184 "MutationCallback" => 1, 188 "MutationCallback" => 1,
(...skipping 5604 matching lines...) Expand 10 before | Expand all | Expand 10 after
5789 if ($currentInterface->extendedAttributes->{$extendedAttribute}) { 5793 if ($currentInterface->extendedAttributes->{$extendedAttribute}) {
5790 $found = 1; 5794 $found = 1;
5791 } 5795 }
5792 return 1 if $found; 5796 return 1 if $found;
5793 }, 0); 5797 }, 0);
5794 5798
5795 return $found; 5799 return $found;
5796 } 5800 }
5797 5801
5798 1; 5802 1;
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/tests/IDBTransactionTest.cpp ('k') | Source/heap/ThreadState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698