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

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

Issue 691313002: MSE: Implement TrackDefault object (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Interim upload not ready for review. BIG TODO needs addressing. 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
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'indexeddb/IDBIndex.idl', 80 'indexeddb/IDBIndex.idl',
81 'indexeddb/IDBKeyRange.idl', 81 'indexeddb/IDBKeyRange.idl',
82 'indexeddb/IDBObjectStore.idl', 82 'indexeddb/IDBObjectStore.idl',
83 'indexeddb/IDBOpenDBRequest.idl', 83 'indexeddb/IDBOpenDBRequest.idl',
84 'indexeddb/IDBRequest.idl', 84 'indexeddb/IDBRequest.idl',
85 'indexeddb/IDBTransaction.idl', 85 'indexeddb/IDBTransaction.idl',
86 'indexeddb/IDBVersionChangeEvent.idl', 86 'indexeddb/IDBVersionChangeEvent.idl',
87 'mediasource/MediaSource.idl', 87 'mediasource/MediaSource.idl',
88 'mediasource/SourceBuffer.idl', 88 'mediasource/SourceBuffer.idl',
89 'mediasource/SourceBufferList.idl', 89 'mediasource/SourceBufferList.idl',
90 'mediasource/TrackDefault.idl',
90 'mediasource/VideoPlaybackQuality.idl', 91 'mediasource/VideoPlaybackQuality.idl',
91 'mediastream/MediaDeviceInfo.idl', 92 'mediastream/MediaDeviceInfo.idl',
92 'mediastream/MediaDeviceInfoCallback.idl', 93 'mediastream/MediaDeviceInfoCallback.idl',
93 'mediastream/MediaStream.idl', 94 'mediastream/MediaStream.idl',
94 'mediastream/MediaStreamEvent.idl', 95 'mediastream/MediaStreamEvent.idl',
95 'mediastream/MediaStreamTrack.idl', 96 'mediastream/MediaStreamTrack.idl',
96 'mediastream/MediaStreamTrackEvent.idl', 97 'mediastream/MediaStreamTrackEvent.idl',
97 'mediastream/MediaStreamTrackSourcesCallback.idl', 98 'mediastream/MediaStreamTrackSourcesCallback.idl',
98 'mediastream/NavigatorUserMediaError.idl', 99 'mediastream/NavigatorUserMediaError.idl',
99 'mediastream/NavigatorUserMediaErrorCallback.idl', 100 'mediastream/NavigatorUserMediaErrorCallback.idl',
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 'mediasource/HTMLVideoElementMediaSource.cpp', 590 'mediasource/HTMLVideoElementMediaSource.cpp',
590 'mediasource/HTMLVideoElementMediaSource.h', 591 'mediasource/HTMLVideoElementMediaSource.h',
591 'mediasource/MediaSource.cpp', 592 'mediasource/MediaSource.cpp',
592 'mediasource/MediaSource.h', 593 'mediasource/MediaSource.h',
593 'mediasource/MediaSourceRegistry.cpp', 594 'mediasource/MediaSourceRegistry.cpp',
594 'mediasource/MediaSourceRegistry.h', 595 'mediasource/MediaSourceRegistry.h',
595 'mediasource/SourceBuffer.cpp', 596 'mediasource/SourceBuffer.cpp',
596 'mediasource/SourceBuffer.h', 597 'mediasource/SourceBuffer.h',
597 'mediasource/SourceBufferList.cpp', 598 'mediasource/SourceBufferList.cpp',
598 'mediasource/SourceBufferList.h', 599 'mediasource/SourceBufferList.h',
600 'mediasource/TrackDefault.cpp',
601 'mediasource/TrackDefault.h',
599 'mediasource/URLMediaSource.cpp', 602 'mediasource/URLMediaSource.cpp',
600 'mediasource/URLMediaSource.h', 603 'mediasource/URLMediaSource.h',
601 'mediasource/VideoPlaybackQuality.cpp', 604 'mediasource/VideoPlaybackQuality.cpp',
602 'mediasource/VideoPlaybackQuality.h', 605 'mediasource/VideoPlaybackQuality.h',
603 'mediastream/MediaConstraintsImpl.cpp', 606 'mediastream/MediaConstraintsImpl.cpp',
604 'mediastream/MediaConstraintsImpl.h', 607 'mediastream/MediaConstraintsImpl.h',
605 'mediastream/MediaDeviceInfo.cpp', 608 'mediastream/MediaDeviceInfo.cpp',
606 'mediastream/MediaDeviceInfo.h', 609 'mediastream/MediaDeviceInfo.h',
607 'mediastream/MediaDeviceInfoCallback.h', 610 'mediastream/MediaDeviceInfoCallback.h',
608 'mediastream/MediaDevicesRequest.cpp', 611 'mediastream/MediaDevicesRequest.cpp',
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 'serviceworkers/CacheTest.cpp', 1049 'serviceworkers/CacheTest.cpp',
1047 'serviceworkers/FetchResponseDataTest.cpp', 1050 'serviceworkers/FetchResponseDataTest.cpp',
1048 'serviceworkers/RequestTest.cpp', 1051 'serviceworkers/RequestTest.cpp',
1049 'serviceworkers/ResponseTest.cpp', 1052 'serviceworkers/ResponseTest.cpp',
1050 'serviceworkers/ServiceWorkerContainerTest.cpp', 1053 'serviceworkers/ServiceWorkerContainerTest.cpp',
1051 'websockets/DOMWebSocketTest.cpp', 1054 'websockets/DOMWebSocketTest.cpp',
1052 'websockets/NewWebSocketChannelImplTest.cpp', 1055 'websockets/NewWebSocketChannelImplTest.cpp',
1053 ], 1056 ],
1054 }, 1057 },
1055 } 1058 }
OLDNEW
« Source/modules/mediasource/TrackDefault.cpp ('K') | « Source/modules/mediasource/TrackDefault.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698