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

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

Issue 720873002: Expose the notificationclick and notificationerror events on ServiceWorkerGlobalScope (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: comments and test Created 6 years, 1 month 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 '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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 'indexeddb/WindowIndexedDatabase.idl', 235 'indexeddb/WindowIndexedDatabase.idl',
236 'indexeddb/WorkerGlobalScopeIndexedDatabase.idl', 236 'indexeddb/WorkerGlobalScopeIndexedDatabase.idl',
237 'mediasource/HTMLVideoElementMediaSource.idl', 237 'mediasource/HTMLVideoElementMediaSource.idl',
238 'mediasource/URLMediaSource.idl', 238 'mediasource/URLMediaSource.idl',
239 'mediastream/NavigatorMediaStream.idl', 239 'mediastream/NavigatorMediaStream.idl',
240 'mediastream/URLMediaStream.idl', 240 'mediastream/URLMediaStream.idl',
241 'mediastream/WindowMediaStream.idl', 241 'mediastream/WindowMediaStream.idl',
242 'navigatorcontentutils/NavigatorContentUtils.idl', 242 'navigatorcontentutils/NavigatorContentUtils.idl',
243 'netinfo/NavigatorNetworkInformation.idl', 243 'netinfo/NavigatorNetworkInformation.idl',
244 'netinfo/WorkerNavigatorNetworkInformation.idl', 244 'netinfo/WorkerNavigatorNetworkInformation.idl',
245 'notifications/ServiceWorkerGlobalScopeNotifications.idl',
245 'performance/SharedWorkerPerformance.idl', 246 'performance/SharedWorkerPerformance.idl',
246 'performance/WorkerGlobalScopePerformance.idl', 247 'performance/WorkerGlobalScopePerformance.idl',
247 'presentation/NavigatorPresentation.idl', 248 'presentation/NavigatorPresentation.idl',
248 'push_messaging/NavigatorPushManager.idl', 249 'push_messaging/NavigatorPushManager.idl',
249 'push_messaging/ServiceWorkerGlobalScopePush.idl', 250 'push_messaging/ServiceWorkerGlobalScopePush.idl',
250 'quota/NavigatorStorageQuota.idl', 251 'quota/NavigatorStorageQuota.idl',
251 'quota/WindowQuota.idl', 252 'quota/WindowQuota.idl',
252 'quota/WorkerNavigatorStorageQuota.idl', 253 'quota/WorkerNavigatorStorageQuota.idl',
253 'screen_orientation/ScreenScreenOrientation.idl', 254 'screen_orientation/ScreenScreenOrientation.idl',
254 'serviceworkers/NavigatorServiceWorker.idl', 255 'serviceworkers/NavigatorServiceWorker.idl',
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 'notifications/Notification.cpp', 737 'notifications/Notification.cpp',
737 'notifications/Notification.h', 738 'notifications/Notification.h',
738 'notifications/NotificationClient.h', 739 'notifications/NotificationClient.h',
739 'notifications/NotificationController.cpp', 740 'notifications/NotificationController.cpp',
740 'notifications/NotificationController.h', 741 'notifications/NotificationController.h',
741 'notifications/NotificationEvent.cpp', 742 'notifications/NotificationEvent.cpp',
742 'notifications/NotificationEvent.h', 743 'notifications/NotificationEvent.h',
743 'notifications/NotificationPermissionCallback.h', 744 'notifications/NotificationPermissionCallback.h',
744 'notifications/NotificationPermissionClient.cpp', 745 'notifications/NotificationPermissionClient.cpp',
745 'notifications/NotificationPermissionClient.h', 746 'notifications/NotificationPermissionClient.h',
747 'notifications/ServiceWorkerGlobalScopeNotifications.h',
746 'performance/SharedWorkerPerformance.cpp', 748 'performance/SharedWorkerPerformance.cpp',
747 'performance/WorkerGlobalScopePerformance.cpp', 749 'performance/WorkerGlobalScopePerformance.cpp',
748 'performance/WorkerGlobalScopePerformance.h', 750 'performance/WorkerGlobalScopePerformance.h',
749 'performance/WorkerPerformance.cpp', 751 'performance/WorkerPerformance.cpp',
750 'performance/WorkerPerformance.h', 752 'performance/WorkerPerformance.h',
751 'presentation/NavigatorPresentation.cpp', 753 'presentation/NavigatorPresentation.cpp',
752 'presentation/NavigatorPresentation.h', 754 'presentation/NavigatorPresentation.h',
753 'presentation/Presentation.cpp', 755 'presentation/Presentation.cpp',
754 'presentation/Presentation.h', 756 'presentation/Presentation.h',
755 'presentation/PresentationSession.cpp', 757 'presentation/PresentationSession.cpp',
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 'serviceworkers/CacheTest.cpp', 1117 'serviceworkers/CacheTest.cpp',
1116 'serviceworkers/FetchResponseDataTest.cpp', 1118 'serviceworkers/FetchResponseDataTest.cpp',
1117 'serviceworkers/RequestTest.cpp', 1119 'serviceworkers/RequestTest.cpp',
1118 'serviceworkers/ResponseTest.cpp', 1120 'serviceworkers/ResponseTest.cpp',
1119 'serviceworkers/ServiceWorkerContainerTest.cpp', 1121 'serviceworkers/ServiceWorkerContainerTest.cpp',
1120 'websockets/DOMWebSocketTest.cpp', 1122 'websockets/DOMWebSocketTest.cpp',
1121 'websockets/DocumentWebSocketChannelTest.cpp', 1123 'websockets/DocumentWebSocketChannelTest.cpp',
1122 ], 1124 ],
1123 }, 1125 },
1124 } 1126 }
OLDNEW
« no previous file with comments | « Source/core/events/EventTypeNames.in ('k') | Source/modules/notifications/ServiceWorkerGlobalScopeNotifications.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698