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

Unified Diff: third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp

Issue 2526293002: [wrapper-tracing] Untangle non-trivial mixin ctors (Closed)
Patch Set: s/new BodyStreamBuffer/BodyStreamBuffer::create/ Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
diff --git a/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp b/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
index 03235b76a0555930acdac908fe3a9977908506b8..73267b81969523c04b47840d591aa1a111fb8ce6 100644
--- a/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
+++ b/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
@@ -704,11 +704,11 @@ TEST_F(CacheStorageTest, Add) {
fetcher->setExpectedFetchUrl(&url);
Request* request = newRequestFromUrl(url);
- Response* response =
- Response::create(getScriptState(),
- new BodyStreamBuffer(getScriptState(),
- new FormDataBytesConsumer(content)),
- contentType, ResponseInit(), exceptionState);
+ Response* response = Response::create(
+ getScriptState(),
+ BodyStreamBuffer::create(getScriptState(),
+ new FormDataBytesConsumer(content)),
+ contentType, ResponseInit(), exceptionState);
fetcher->setResponse(response);
WebVector<WebServiceWorkerCache::BatchOperation> expectedPutOperations(

Powered by Google App Engine
This is Rietveld 408576698