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

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

Issue 2292763002: [Fetch API] Implement Request.formData and Response.formData. (Closed)
Patch Set: Handle partial delimiter prefixes correctly and really test them Created 4 years, 3 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 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after
1106 'fetch/FetchManager.cpp', 1106 'fetch/FetchManager.cpp',
1107 'fetch/FetchManager.h', 1107 'fetch/FetchManager.h',
1108 'fetch/FetchRequestData.cpp', 1108 'fetch/FetchRequestData.cpp',
1109 'fetch/FetchRequestData.h', 1109 'fetch/FetchRequestData.h',
1110 'fetch/FetchResponseData.cpp', 1110 'fetch/FetchResponseData.cpp',
1111 'fetch/FetchResponseData.h', 1111 'fetch/FetchResponseData.h',
1112 'fetch/GlobalFetch.cpp', 1112 'fetch/GlobalFetch.cpp',
1113 'fetch/GlobalFetch.h', 1113 'fetch/GlobalFetch.h',
1114 'fetch/Headers.cpp', 1114 'fetch/Headers.cpp',
1115 'fetch/Headers.h', 1115 'fetch/Headers.h',
1116 'fetch/MultipartParser.cpp',
1117 'fetch/MultipartParser.h',
1116 'fetch/ReadableStreamDataConsumerHandle.cpp', 1118 'fetch/ReadableStreamDataConsumerHandle.cpp',
1117 'fetch/ReadableStreamDataConsumerHandle.h', 1119 'fetch/ReadableStreamDataConsumerHandle.h',
1118 'fetch/Request.cpp', 1120 'fetch/Request.cpp',
1119 'fetch/Request.h', 1121 'fetch/Request.h',
1120 'fetch/RequestInit.cpp', 1122 'fetch/RequestInit.cpp',
1121 'fetch/RequestInit.h', 1123 'fetch/RequestInit.h',
1122 'fetch/Response.cpp', 1124 'fetch/Response.cpp',
1123 'fetch/Response.h', 1125 'fetch/Response.h',
1124 'fetch/ResponseInit.h', 1126 'fetch/ResponseInit.h',
1125 'filesystem/DOMFilePath.cpp', 1127 'filesystem/DOMFilePath.cpp',
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
2055 'fetch/BytesConsumerForDataConsumerHandleTest.cpp', 2057 'fetch/BytesConsumerForDataConsumerHandleTest.cpp',
2056 'fetch/CompositeDataConsumerHandleTest.cpp', 2058 'fetch/CompositeDataConsumerHandleTest.cpp',
2057 'fetch/DataConsumerHandleTestUtil.cpp', 2059 'fetch/DataConsumerHandleTestUtil.cpp',
2058 'fetch/DataConsumerHandleTestUtil.h', 2060 'fetch/DataConsumerHandleTestUtil.h',
2059 'fetch/DataConsumerHandleUtilTest.cpp', 2061 'fetch/DataConsumerHandleUtilTest.cpp',
2060 'fetch/DataConsumerTeeTest.cpp', 2062 'fetch/DataConsumerTeeTest.cpp',
2061 'fetch/FetchBlobDataConsumerHandleTest.cpp', 2063 'fetch/FetchBlobDataConsumerHandleTest.cpp',
2062 'fetch/FetchDataLoaderTest.cpp', 2064 'fetch/FetchDataLoaderTest.cpp',
2063 'fetch/FetchFormDataConsumerHandleTest.cpp', 2065 'fetch/FetchFormDataConsumerHandleTest.cpp',
2064 'fetch/FetchResponseDataTest.cpp', 2066 'fetch/FetchResponseDataTest.cpp',
2067 'fetch/MultipartParserTest.cpp',
2065 'fetch/ReadableStreamDataConsumerHandleTest.cpp', 2068 'fetch/ReadableStreamDataConsumerHandleTest.cpp',
2066 'fetch/RequestTest.cpp', 2069 'fetch/RequestTest.cpp',
2067 'fetch/ResponseTest.cpp', 2070 'fetch/ResponseTest.cpp',
2068 'filesystem/DOMFileSystemBaseTest.cpp', 2071 'filesystem/DOMFileSystemBaseTest.cpp',
2069 'indexeddb/IDBKeyPathTest.cpp', 2072 'indexeddb/IDBKeyPathTest.cpp',
2070 'indexeddb/IDBRequestTest.cpp', 2073 'indexeddb/IDBRequestTest.cpp',
2071 'indexeddb/IDBTransactionTest.cpp', 2074 'indexeddb/IDBTransactionTest.cpp',
2072 'indexeddb/MockWebIDBDatabase.cpp', 2075 'indexeddb/MockWebIDBDatabase.cpp',
2073 'indexeddb/MockWebIDBDatabase.h', 2076 'indexeddb/MockWebIDBDatabase.h',
2074 'mediasession/MediaSessionTest.cpp', 2077 'mediasession/MediaSessionTest.cpp',
(...skipping 20 matching lines...) Expand all
2095 'webaudio/ConvolverNodeTest.cpp', 2098 'webaudio/ConvolverNodeTest.cpp',
2096 'webaudio/DynamicsCompressorNodeTest.cpp', 2099 'webaudio/DynamicsCompressorNodeTest.cpp',
2097 'webaudio/ScriptProcessorNodeTest.cpp', 2100 'webaudio/ScriptProcessorNodeTest.cpp',
2098 'webaudio/StereoPannerNodeTest.cpp', 2101 'webaudio/StereoPannerNodeTest.cpp',
2099 'webdatabase/QuotaTrackerTest.cpp', 2102 'webdatabase/QuotaTrackerTest.cpp',
2100 'websockets/DOMWebSocketTest.cpp', 2103 'websockets/DOMWebSocketTest.cpp',
2101 'websockets/DocumentWebSocketChannelTest.cpp', 2104 'websockets/DocumentWebSocketChannelTest.cpp',
2102 ], 2105 ],
2103 }, 2106 },
2104 } 2107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698