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

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

Issue 111743007: Add the SharedWorker.workerStart property for high resolution timers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code style compliance Created 6 years, 11 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 '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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'mediastream/RTCStatsResponse.idl', 118 'mediastream/RTCStatsResponse.idl',
119 'mediastream/SourceInfo.idl', 119 'mediastream/SourceInfo.idl',
120 'mediastream/URLMediaStream.idl', 120 'mediastream/URLMediaStream.idl',
121 'navigatorcontentutils/NavigatorContentUtils.idl', 121 'navigatorcontentutils/NavigatorContentUtils.idl',
122 'notifications/Notification.idl', 122 'notifications/Notification.idl',
123 'notifications/NotificationCenter.idl', 123 'notifications/NotificationCenter.idl',
124 'notifications/NotificationPermissionCallback.idl', 124 'notifications/NotificationPermissionCallback.idl',
125 'notifications/WebKitNotification.idl', 125 'notifications/WebKitNotification.idl',
126 'notifications/WindowNotifications.idl', 126 'notifications/WindowNotifications.idl',
127 'notifications/WorkerGlobalScopeNotifications.idl', 127 'notifications/WorkerGlobalScopeNotifications.idl',
128 'performance/SharedWorkerPerformance.idl',
128 'performance/WorkerGlobalScopePerformance.idl', 129 'performance/WorkerGlobalScopePerformance.idl',
129 'performance/WorkerPerformance.idl', 130 'performance/WorkerPerformance.idl',
130 'quota/NavigatorStorageQuota.idl', 131 'quota/NavigatorStorageQuota.idl',
131 'quota/StorageErrorCallback.idl', 132 'quota/StorageErrorCallback.idl',
132 'quota/StorageInfo.idl', 133 'quota/StorageInfo.idl',
133 'quota/StorageQuota.idl', 134 'quota/StorageQuota.idl',
134 'quota/StorageQuotaCallback.idl', 135 'quota/StorageQuotaCallback.idl',
135 'quota/StorageUsageCallback.idl', 136 'quota/StorageUsageCallback.idl',
136 'quota/WindowQuota.idl', 137 'quota/WindowQuota.idl',
137 'quota/WorkerNavigatorStorageQuota.idl', 138 'quota/WorkerNavigatorStorageQuota.idl',
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 'notifications/NotificationBase.h', 502 'notifications/NotificationBase.h',
502 'notifications/NotificationCenter.cpp', 503 'notifications/NotificationCenter.cpp',
503 'notifications/NotificationCenter.h', 504 'notifications/NotificationCenter.h',
504 'notifications/NotificationController.cpp', 505 'notifications/NotificationController.cpp',
505 'notifications/NotificationController.h', 506 'notifications/NotificationController.h',
506 'notifications/NotificationPermissionCallback.h', 507 'notifications/NotificationPermissionCallback.h',
507 'notifications/WebKitNotification.cpp', 508 'notifications/WebKitNotification.cpp',
508 'notifications/WebKitNotification.h', 509 'notifications/WebKitNotification.h',
509 'notifications/WorkerGlobalScopeNotifications.cpp', 510 'notifications/WorkerGlobalScopeNotifications.cpp',
510 'notifications/WorkerGlobalScopeNotifications.h', 511 'notifications/WorkerGlobalScopeNotifications.h',
512 'performance/SharedWorkerPerformance.cpp',
511 'performance/WorkerGlobalScopePerformance.cpp', 513 'performance/WorkerGlobalScopePerformance.cpp',
512 'performance/WorkerGlobalScopePerformance.h', 514 'performance/WorkerGlobalScopePerformance.h',
513 'performance/WorkerPerformance.cpp', 515 'performance/WorkerPerformance.cpp',
514 'performance/WorkerPerformance.h', 516 'performance/WorkerPerformance.h',
515 'quota/DOMWindowQuota.cpp', 517 'quota/DOMWindowQuota.cpp',
516 'quota/DOMWindowQuota.h', 518 'quota/DOMWindowQuota.h',
517 'quota/NavigatorStorageQuota.cpp', 519 'quota/NavigatorStorageQuota.cpp',
518 'quota/NavigatorStorageQuota.h', 520 'quota/NavigatorStorageQuota.h',
519 'quota/StorageInfo.cpp', 521 'quota/StorageInfo.cpp',
520 'quota/StorageInfo.h', 522 'quota/StorageInfo.h',
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 'indexeddb/IDBKeyPathTest.cpp', 807 'indexeddb/IDBKeyPathTest.cpp',
806 'indexeddb/IDBRequestTest.cpp', 808 'indexeddb/IDBRequestTest.cpp',
807 'indexeddb/IDBTransactionTest.cpp', 809 'indexeddb/IDBTransactionTest.cpp',
808 'websockets/WebSocketDeflaterTest.cpp', 810 'websockets/WebSocketDeflaterTest.cpp',
809 'websockets/WebSocketExtensionDispatcherTest.cpp', 811 'websockets/WebSocketExtensionDispatcherTest.cpp',
810 'websockets/WebSocketExtensionParserTest.cpp', 812 'websockets/WebSocketExtensionParserTest.cpp',
811 'websockets/WebSocketPerMessageDeflateTest.cpp', 813 'websockets/WebSocketPerMessageDeflateTest.cpp',
812 ], 814 ],
813 }, 815 },
814 } 816 }
OLDNEW
« no previous file with comments | « Source/core/workers/SharedWorker.h ('k') | Source/modules/performance/SharedWorkerPerformance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698