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

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

Issue 1139873002: [PROTOTYPE] ServiceWorker: Add ServiceWorkerMessageEvent impl. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 '../core/core_generated.gypi', 3 '../core/core_generated.gypi',
4 'modules_generated.gypi', 4 'modules_generated.gypi',
5 ], 5 ],
6 'variables': { 6 'variables': {
7 # Experimental hooks for embedder to provide extra IDL and source files. 7 # Experimental hooks for embedder to provide extra IDL and source files.
8 # 8 #
9 # Note: this is not a supported API. If you rely on this, you will be broken 9 # Note: this is not a supported API. If you rely on this, you will be broken
10 # from time to time as the code generator changes in backward incompatible 10 # from time to time as the code generator changes in backward incompatible
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'quota/StorageQuotaCallback.idl', 163 'quota/StorageQuotaCallback.idl',
164 'quota/StorageUsageCallback.idl', 164 'quota/StorageUsageCallback.idl',
165 'screen_orientation/ScreenOrientation.idl', 165 'screen_orientation/ScreenOrientation.idl',
166 'serviceworkers/Client.idl', 166 'serviceworkers/Client.idl',
167 'serviceworkers/Clients.idl', 167 'serviceworkers/Clients.idl',
168 'serviceworkers/ExtendableEvent.idl', 168 'serviceworkers/ExtendableEvent.idl',
169 'serviceworkers/FetchEvent.idl', 169 'serviceworkers/FetchEvent.idl',
170 'serviceworkers/ServiceWorker.idl', 170 'serviceworkers/ServiceWorker.idl',
171 'serviceworkers/ServiceWorkerContainer.idl', 171 'serviceworkers/ServiceWorkerContainer.idl',
172 'serviceworkers/ServiceWorkerGlobalScope.idl', 172 'serviceworkers/ServiceWorkerGlobalScope.idl',
173 'serviceworkers/ServiceWorkerMessageEvent.idl',
173 'serviceworkers/ServiceWorkerRegistration.idl', 174 'serviceworkers/ServiceWorkerRegistration.idl',
174 'serviceworkers/WindowClient.idl', 175 'serviceworkers/WindowClient.idl',
175 'speech/SpeechGrammar.idl', 176 'speech/SpeechGrammar.idl',
176 'speech/SpeechGrammarList.idl', 177 'speech/SpeechGrammarList.idl',
177 'speech/SpeechRecognition.idl', 178 'speech/SpeechRecognition.idl',
178 'speech/SpeechRecognitionAlternative.idl', 179 'speech/SpeechRecognitionAlternative.idl',
179 'speech/SpeechRecognitionError.idl', 180 'speech/SpeechRecognitionError.idl',
180 'speech/SpeechRecognitionEvent.idl', 181 'speech/SpeechRecognitionEvent.idl',
181 'speech/SpeechRecognitionResult.idl', 182 'speech/SpeechRecognitionResult.idl',
182 'speech/SpeechRecognitionResultList.idl', 183 'speech/SpeechRecognitionResultList.idl',
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 'mediastream/RTCDTMFToneChangeEvent.idl', 327 'mediastream/RTCDTMFToneChangeEvent.idl',
327 'mediastream/RTCDataChannelEvent.idl', 328 'mediastream/RTCDataChannelEvent.idl',
328 'mediastream/RTCIceCandidateEvent.idl', 329 'mediastream/RTCIceCandidateEvent.idl',
329 'navigatorconnect/CrossOriginConnectEvent.idl', 330 'navigatorconnect/CrossOriginConnectEvent.idl',
330 'notifications/NotificationEvent.idl', 331 'notifications/NotificationEvent.idl',
331 'presentation/AvailableChangeEvent.idl', 332 'presentation/AvailableChangeEvent.idl',
332 'presentation/DefaultSessionStartEvent.idl', 333 'presentation/DefaultSessionStartEvent.idl',
333 'push_messaging/PushEvent.idl', 334 'push_messaging/PushEvent.idl',
334 'serviceworkers/ExtendableEvent.idl', 335 'serviceworkers/ExtendableEvent.idl',
335 'serviceworkers/FetchEvent.idl', 336 'serviceworkers/FetchEvent.idl',
337 'serviceworkers/ServiceWorkerMessageEvent.idl',
336 'speech/SpeechRecognitionError.idl', 338 'speech/SpeechRecognitionError.idl',
337 'speech/SpeechRecognitionEvent.idl', 339 'speech/SpeechRecognitionEvent.idl',
338 'speech/SpeechSynthesisEvent.idl', 340 'speech/SpeechSynthesisEvent.idl',
339 'storage/StorageEvent.idl', 341 'storage/StorageEvent.idl',
340 'webaudio/AudioProcessingEvent.idl', 342 'webaudio/AudioProcessingEvent.idl',
341 'webaudio/OfflineAudioCompletionEvent.idl', 343 'webaudio/OfflineAudioCompletionEvent.idl',
342 'webmidi/MIDIConnectionEvent.idl', 344 'webmidi/MIDIConnectionEvent.idl',
343 'webmidi/MIDIMessageEvent.idl', 345 'webmidi/MIDIMessageEvent.idl',
344 'websockets/CloseEvent.idl', 346 'websockets/CloseEvent.idl',
345 ], 347 ],
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
1114 'serviceworkers/ServiceWorkerContainerClient.cpp', 1116 'serviceworkers/ServiceWorkerContainerClient.cpp',
1115 'serviceworkers/ServiceWorkerContainerClient.h', 1117 'serviceworkers/ServiceWorkerContainerClient.h',
1116 'serviceworkers/ServiceWorkerWindowClient.cpp', 1118 'serviceworkers/ServiceWorkerWindowClient.cpp',
1117 'serviceworkers/ServiceWorkerWindowClient.h', 1119 'serviceworkers/ServiceWorkerWindowClient.h',
1118 'serviceworkers/ServiceWorkerError.cpp', 1120 'serviceworkers/ServiceWorkerError.cpp',
1119 'serviceworkers/ServiceWorkerError.h', 1121 'serviceworkers/ServiceWorkerError.h',
1120 'serviceworkers/ServiceWorkerGlobalScope.cpp', 1122 'serviceworkers/ServiceWorkerGlobalScope.cpp',
1121 'serviceworkers/ServiceWorkerGlobalScope.h', 1123 'serviceworkers/ServiceWorkerGlobalScope.h',
1122 'serviceworkers/ServiceWorkerGlobalScopeClient.cpp', 1124 'serviceworkers/ServiceWorkerGlobalScopeClient.cpp',
1123 'serviceworkers/ServiceWorkerGlobalScopeClient.h', 1125 'serviceworkers/ServiceWorkerGlobalScopeClient.h',
1126 'serviceworkers/ServiceWorkerMessageEvent.cpp',
1127 'serviceworkers/ServiceWorkerMessageEvent.h',
1124 'serviceworkers/ServiceWorkerRegistration.cpp', 1128 'serviceworkers/ServiceWorkerRegistration.cpp',
1125 'serviceworkers/ServiceWorkerRegistration.h', 1129 'serviceworkers/ServiceWorkerRegistration.h',
1126 'serviceworkers/ServiceWorkerScriptCachedMetadataHandler.cpp', 1130 'serviceworkers/ServiceWorkerScriptCachedMetadataHandler.cpp',
1127 'serviceworkers/ServiceWorkerScriptCachedMetadataHandler.h', 1131 'serviceworkers/ServiceWorkerScriptCachedMetadataHandler.h',
1128 'serviceworkers/ServiceWorkerThread.cpp', 1132 'serviceworkers/ServiceWorkerThread.cpp',
1129 'serviceworkers/ServiceWorkerThread.h', 1133 'serviceworkers/ServiceWorkerThread.h',
1130 'serviceworkers/WaitUntilObserver.cpp', 1134 'serviceworkers/WaitUntilObserver.cpp',
1131 'speech/DOMWindowSpeechSynthesis.cpp', 1135 'speech/DOMWindowSpeechSynthesis.cpp',
1132 'speech/DOMWindowSpeechSynthesis.h', 1136 'speech/DOMWindowSpeechSynthesis.h',
1133 'speech/SpeechGrammar.cpp', 1137 'speech/SpeechGrammar.cpp',
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1434 'webaudio/AudioBasicProcessorHandlerTest.cpp', 1438 'webaudio/AudioBasicProcessorHandlerTest.cpp',
1435 'webaudio/ConvolverNodeTest.cpp', 1439 'webaudio/ConvolverNodeTest.cpp',
1436 'webaudio/DynamicsCompressorNodeTest.cpp', 1440 'webaudio/DynamicsCompressorNodeTest.cpp',
1437 'webaudio/ScriptProcessorNodeTest.cpp', 1441 'webaudio/ScriptProcessorNodeTest.cpp',
1438 'webaudio/StereoPannerNodeTest.cpp', 1442 'webaudio/StereoPannerNodeTest.cpp',
1439 'websockets/DOMWebSocketTest.cpp', 1443 'websockets/DOMWebSocketTest.cpp',
1440 'websockets/DocumentWebSocketChannelTest.cpp', 1444 'websockets/DocumentWebSocketChannelTest.cpp',
1441 ], 1445 ],
1442 }, 1446 },
1443 } 1447 }
OLDNEW
« no previous file with comments | « Source/bindings/modules/v8/custom/custom.gypi ('k') | Source/modules/serviceworkers/ServiceWorkerMessageEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698