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

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

Issue 14423002: Web MIDI: implement MIDIErrorCallback (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: #include Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/modules/webmidi/MIDIErrorCallback.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 { 1 {
2 'variables': { 2 'variables': {
3 'modules_include_dirs': [ 3 'modules_include_dirs': [
4 'battery', 4 'battery',
5 'donottrack', 5 'donottrack',
6 'filesystem', 6 'filesystem',
7 'gamepad', 7 'gamepad',
8 'geolocation', 8 'geolocation',
9 'indexeddb', 9 'indexeddb',
10 'indexeddb/chromium', 10 'indexeddb/chromium',
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 'webdatabase/SQLResultSetRowList.idl', 167 'webdatabase/SQLResultSetRowList.idl',
168 'webdatabase/SQLStatementCallback.idl', 168 'webdatabase/SQLStatementCallback.idl',
169 'webdatabase/SQLStatementErrorCallback.idl', 169 'webdatabase/SQLStatementErrorCallback.idl',
170 'webdatabase/SQLTransaction.idl', 170 'webdatabase/SQLTransaction.idl',
171 'webdatabase/SQLTransactionCallback.idl', 171 'webdatabase/SQLTransactionCallback.idl',
172 'webdatabase/SQLTransactionErrorCallback.idl', 172 'webdatabase/SQLTransactionErrorCallback.idl',
173 'webdatabase/SQLTransactionSync.idl', 173 'webdatabase/SQLTransactionSync.idl',
174 'webdatabase/SQLTransactionSyncCallback.idl', 174 'webdatabase/SQLTransactionSyncCallback.idl',
175 'webdatabase/WorkerContextWebDatabase.idl', 175 'webdatabase/WorkerContextWebDatabase.idl',
176 'webmidi/DOMWindowWebMIDI.idl', 176 'webmidi/DOMWindowWebMIDI.idl',
177 'webmidi/MIDIErrorCallback.idl',
177 'webmidi/MIDIMessageEvent.idl', 178 'webmidi/MIDIMessageEvent.idl',
178 'websockets/CloseEvent.idl', 179 'websockets/CloseEvent.idl',
179 'websockets/DOMWindowWebSocket.idl', 180 'websockets/DOMWindowWebSocket.idl',
180 'websockets/WebSocket.idl', 181 'websockets/WebSocket.idl',
181 'websockets/WorkerContextWebSocket.idl', 182 'websockets/WorkerContextWebSocket.idl',
182 ], 183 ],
183 'modules_files': [ 184 'modules_files': [
184 'battery/BatteryClient.h', 185 'battery/BatteryClient.h',
185 'battery/BatteryController.cpp', 186 'battery/BatteryController.cpp',
186 'battery/BatteryController.h', 187 'battery/BatteryController.h',
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 'webdatabase/SQLTransactionSync.cpp', 605 'webdatabase/SQLTransactionSync.cpp',
605 'webdatabase/SQLTransactionSync.h', 606 'webdatabase/SQLTransactionSync.h',
606 'webdatabase/SQLTransactionSyncCallback.h', 607 'webdatabase/SQLTransactionSyncCallback.h',
607 'webdatabase/WorkerContextWebDatabase.cpp', 608 'webdatabase/WorkerContextWebDatabase.cpp',
608 'webdatabase/WorkerContextWebDatabase.h', 609 'webdatabase/WorkerContextWebDatabase.h',
609 'webdatabase/chromium/DatabaseObserver.h', 610 'webdatabase/chromium/DatabaseObserver.h',
610 'webdatabase/chromium/DatabaseTrackerChromium.cpp', 611 'webdatabase/chromium/DatabaseTrackerChromium.cpp',
611 'webdatabase/chromium/QuotaTracker.cpp', 612 'webdatabase/chromium/QuotaTracker.cpp',
612 'webdatabase/chromium/QuotaTracker.h', 613 'webdatabase/chromium/QuotaTracker.h',
613 'webdatabase/chromium/SQLTransactionClientChromium.cpp', 614 'webdatabase/chromium/SQLTransactionClientChromium.cpp',
615 'webmidi/MIDIErrorCallback.cpp',
616 'webmidi/MIDIErrorCallback.h',
614 'webmidi/MIDIMessageEvent.h', 617 'webmidi/MIDIMessageEvent.h',
615 'websockets/CloseEvent.h', 618 'websockets/CloseEvent.h',
616 'websockets/MainThreadWebSocketChannel.cpp', 619 'websockets/MainThreadWebSocketChannel.cpp',
617 'websockets/MainThreadWebSocketChannel.h', 620 'websockets/MainThreadWebSocketChannel.h',
618 'websockets/ThreadableWebSocketChannelClientWrapper.cpp', 621 'websockets/ThreadableWebSocketChannelClientWrapper.cpp',
619 'websockets/ThreadableWebSocketChannelClientWrapper.h', 622 'websockets/ThreadableWebSocketChannelClientWrapper.h',
620 'websockets/WebSocket.cpp', 623 'websockets/WebSocket.cpp',
621 'websockets/WebSocket.h', 624 'websockets/WebSocket.h',
622 'websockets/WebSocketChannel.cpp', 625 'websockets/WebSocketChannel.cpp',
623 'websockets/WebSocketChannel.h', 626 'websockets/WebSocketChannel.h',
(...skipping 13 matching lines...) Expand all
637 'websockets/WebSocketHandshake.h', 640 'websockets/WebSocketHandshake.h',
638 'websockets/WebSocketHandshakeRequest.cpp', 641 'websockets/WebSocketHandshakeRequest.cpp',
639 'websockets/WebSocketHandshakeRequest.h', 642 'websockets/WebSocketHandshakeRequest.h',
640 'websockets/WebSocketHandshakeResponse.cpp', 643 'websockets/WebSocketHandshakeResponse.cpp',
641 'websockets/WebSocketHandshakeResponse.h', 644 'websockets/WebSocketHandshakeResponse.h',
642 'websockets/WorkerThreadableWebSocketChannel.cpp', 645 'websockets/WorkerThreadableWebSocketChannel.cpp',
643 'websockets/WorkerThreadableWebSocketChannel.h', 646 'websockets/WorkerThreadableWebSocketChannel.h',
644 ], 647 ],
645 }, 648 },
646 } 649 }
OLDNEW
« no previous file with comments | « no previous file | Source/modules/webmidi/MIDIErrorCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698