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

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

Issue 717273002: Implement the ServiceWorkerRegistration.showNotification() method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: adds a 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'notifications/ServiceWorkerGlobalScopeNotifications.idl',
246 'notifications/ServiceWorkerRegistrationNotifications.idl',
246 'performance/SharedWorkerPerformance.idl', 247 'performance/SharedWorkerPerformance.idl',
247 'performance/WorkerGlobalScopePerformance.idl', 248 'performance/WorkerGlobalScopePerformance.idl',
248 'presentation/NavigatorPresentation.idl', 249 'presentation/NavigatorPresentation.idl',
249 'push_messaging/NavigatorPushManager.idl', 250 'push_messaging/NavigatorPushManager.idl',
250 'push_messaging/ServiceWorkerGlobalScopePush.idl', 251 'push_messaging/ServiceWorkerGlobalScopePush.idl',
251 'quota/NavigatorStorageQuota.idl', 252 'quota/NavigatorStorageQuota.idl',
252 'quota/WindowQuota.idl', 253 'quota/WindowQuota.idl',
253 'quota/WorkerNavigatorStorageQuota.idl', 254 'quota/WorkerNavigatorStorageQuota.idl',
254 'screen_orientation/ScreenScreenOrientation.idl', 255 'screen_orientation/ScreenScreenOrientation.idl',
255 'serviceworkers/NavigatorServiceWorker.idl', 256 'serviceworkers/NavigatorServiceWorker.idl',
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 'notifications/Notification.h', 739 'notifications/Notification.h',
739 'notifications/NotificationClient.h', 740 'notifications/NotificationClient.h',
740 'notifications/NotificationController.cpp', 741 'notifications/NotificationController.cpp',
741 'notifications/NotificationController.h', 742 'notifications/NotificationController.h',
742 'notifications/NotificationEvent.cpp', 743 'notifications/NotificationEvent.cpp',
743 'notifications/NotificationEvent.h', 744 'notifications/NotificationEvent.h',
744 'notifications/NotificationPermissionCallback.h', 745 'notifications/NotificationPermissionCallback.h',
745 'notifications/NotificationPermissionClient.cpp', 746 'notifications/NotificationPermissionClient.cpp',
746 'notifications/NotificationPermissionClient.h', 747 'notifications/NotificationPermissionClient.h',
747 'notifications/ServiceWorkerGlobalScopeNotifications.h', 748 'notifications/ServiceWorkerGlobalScopeNotifications.h',
749 'notifications/ServiceWorkerRegistrationNotifications.cpp',
750 'notifications/ServiceWorkerRegistrationNotifications.h',
748 'performance/SharedWorkerPerformance.cpp', 751 'performance/SharedWorkerPerformance.cpp',
749 'performance/WorkerGlobalScopePerformance.cpp', 752 'performance/WorkerGlobalScopePerformance.cpp',
750 'performance/WorkerGlobalScopePerformance.h', 753 'performance/WorkerGlobalScopePerformance.h',
751 'performance/WorkerPerformance.cpp', 754 'performance/WorkerPerformance.cpp',
752 'performance/WorkerPerformance.h', 755 'performance/WorkerPerformance.h',
753 'presentation/NavigatorPresentation.cpp', 756 'presentation/NavigatorPresentation.cpp',
754 'presentation/NavigatorPresentation.h', 757 'presentation/NavigatorPresentation.h',
755 'presentation/Presentation.cpp', 758 'presentation/Presentation.cpp',
756 'presentation/Presentation.h', 759 'presentation/Presentation.h',
757 'presentation/PresentationSession.cpp', 760 'presentation/PresentationSession.cpp',
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 'serviceworkers/CacheTest.cpp', 1116 'serviceworkers/CacheTest.cpp',
1114 'serviceworkers/FetchResponseDataTest.cpp', 1117 'serviceworkers/FetchResponseDataTest.cpp',
1115 'serviceworkers/RequestTest.cpp', 1118 'serviceworkers/RequestTest.cpp',
1116 'serviceworkers/ResponseTest.cpp', 1119 'serviceworkers/ResponseTest.cpp',
1117 'serviceworkers/ServiceWorkerContainerTest.cpp', 1120 'serviceworkers/ServiceWorkerContainerTest.cpp',
1118 'websockets/DOMWebSocketTest.cpp', 1121 'websockets/DOMWebSocketTest.cpp',
1119 'websockets/DocumentWebSocketChannelTest.cpp', 1122 'websockets/DocumentWebSocketChannelTest.cpp',
1120 ], 1123 ],
1121 }, 1124 },
1122 } 1125 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698