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

Side by Side Diff: Source/modules/modules.gypi

Issue 103083002: Decouple FileSystem and WebSQL callbacks from VoidCallback and it non-refcounted (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 # Experimental hooks for embedder to provide extra IDL and source files. 3 # Experimental hooks for embedder to provide extra IDL and source files.
4 # 4 #
5 # Note: this is not a supported API. If you rely on this, you will be broken 5 # Note: this is not a supported API. If you rely on this, you will be broken
6 # from time to time as the code generator changes in backward incompatible 6 # from time to time as the code generator changes in backward incompatible
7 # ways. 7 # ways.
8 'extra_blink_module_idl_files': [], 8 'extra_blink_module_idl_files': [],
9 'extra_blink_module_files': [], 9 'extra_blink_module_files': [],
10 'modules_idl_files': [ 10 'modules_idl_files': [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'filesystem/DirectoryReaderSync.idl', 44 'filesystem/DirectoryReaderSync.idl',
45 'filesystem/EntriesCallback.idl', 45 'filesystem/EntriesCallback.idl',
46 'filesystem/Entry.idl', 46 'filesystem/Entry.idl',
47 'filesystem/EntryCallback.idl', 47 'filesystem/EntryCallback.idl',
48 'filesystem/EntrySync.idl', 48 'filesystem/EntrySync.idl',
49 'filesystem/ErrorCallback.idl', 49 'filesystem/ErrorCallback.idl',
50 'filesystem/FileCallback.idl', 50 'filesystem/FileCallback.idl',
51 'filesystem/FileEntry.idl', 51 'filesystem/FileEntry.idl',
52 'filesystem/FileEntrySync.idl', 52 'filesystem/FileEntrySync.idl',
53 'filesystem/FileSystemCallback.idl', 53 'filesystem/FileSystemCallback.idl',
54 'filesystem/FileSystemVoidCallback.idl',
54 'filesystem/FileWriter.idl', 55 'filesystem/FileWriter.idl',
55 'filesystem/FileWriterCallback.idl', 56 'filesystem/FileWriterCallback.idl',
56 'filesystem/FileWriterSync.idl', 57 'filesystem/FileWriterSync.idl',
57 'filesystem/HTMLInputElementFileSystem.idl', 58 'filesystem/HTMLInputElementFileSystem.idl',
58 'filesystem/Metadata.idl', 59 'filesystem/Metadata.idl',
59 'filesystem/MetadataCallback.idl', 60 'filesystem/MetadataCallback.idl',
60 'filesystem/WindowFileSystem.idl', 61 'filesystem/WindowFileSystem.idl',
61 'filesystem/WorkerGlobalScopeFileSystem.idl', 62 'filesystem/WorkerGlobalScopeFileSystem.idl',
62 'gamepad/Gamepad.idl', 63 'gamepad/Gamepad.idl',
63 'gamepad/GamepadList.idl', 64 'gamepad/GamepadList.idl',
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 'webdatabase/SQLError.idl', 187 'webdatabase/SQLError.idl',
187 'webdatabase/SQLResultSet.idl', 188 'webdatabase/SQLResultSet.idl',
188 'webdatabase/SQLResultSetRowList.idl', 189 'webdatabase/SQLResultSetRowList.idl',
189 'webdatabase/SQLStatementCallback.idl', 190 'webdatabase/SQLStatementCallback.idl',
190 'webdatabase/SQLStatementErrorCallback.idl', 191 'webdatabase/SQLStatementErrorCallback.idl',
191 'webdatabase/SQLTransaction.idl', 192 'webdatabase/SQLTransaction.idl',
192 'webdatabase/SQLTransactionCallback.idl', 193 'webdatabase/SQLTransactionCallback.idl',
193 'webdatabase/SQLTransactionErrorCallback.idl', 194 'webdatabase/SQLTransactionErrorCallback.idl',
194 'webdatabase/SQLTransactionSync.idl', 195 'webdatabase/SQLTransactionSync.idl',
195 'webdatabase/SQLTransactionSyncCallback.idl', 196 'webdatabase/SQLTransactionSyncCallback.idl',
197 'webdatabase/SQLVoidCallback.idl',
196 'webdatabase/WindowWebDatabase.idl', 198 'webdatabase/WindowWebDatabase.idl',
197 'webdatabase/WorkerGlobalScopeWebDatabase.idl', 199 'webdatabase/WorkerGlobalScopeWebDatabase.idl',
198 'webmidi/MIDIAccess.idl', 200 'webmidi/MIDIAccess.idl',
199 'webmidi/MIDIAccessPromise.idl', 201 'webmidi/MIDIAccessPromise.idl',
200 'webmidi/MIDIConnectionEvent.idl', 202 'webmidi/MIDIConnectionEvent.idl',
201 'webmidi/MIDIErrorCallback.idl', 203 'webmidi/MIDIErrorCallback.idl',
202 'webmidi/MIDIInput.idl', 204 'webmidi/MIDIInput.idl',
203 'webmidi/MIDIMessageEvent.idl', 205 'webmidi/MIDIMessageEvent.idl',
204 'webmidi/MIDIOutput.idl', 206 'webmidi/MIDIOutput.idl',
205 'webmidi/MIDIPort.idl', 207 'webmidi/MIDIPort.idl',
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 'indexeddb/IDBKeyPathTest.cpp', 805 'indexeddb/IDBKeyPathTest.cpp',
804 'indexeddb/IDBRequestTest.cpp', 806 'indexeddb/IDBRequestTest.cpp',
805 'indexeddb/IDBTransactionTest.cpp', 807 'indexeddb/IDBTransactionTest.cpp',
806 'websockets/WebSocketDeflaterTest.cpp', 808 'websockets/WebSocketDeflaterTest.cpp',
807 'websockets/WebSocketExtensionDispatcherTest.cpp', 809 'websockets/WebSocketExtensionDispatcherTest.cpp',
808 'websockets/WebSocketExtensionParserTest.cpp', 810 'websockets/WebSocketExtensionParserTest.cpp',
809 'websockets/WebSocketPerMessageDeflateTest.cpp', 811 'websockets/WebSocketPerMessageDeflateTest.cpp',
810 ], 812 ],
811 }, 813 },
812 } 814 }
OLDNEW
« no previous file with comments | « Source/modules/mediastream/RTCVoidRequestImpl.cpp ('k') | Source/modules/notifications/NotificationCenter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698