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

Side by Side Diff: Source/modules/fetch/ResponseTest.cpp

Issue 1173173006: [2c] Replace Body::readAsyncFromBlob with readAsyncFromFetchDataConsumerHandle (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: MODULES_EXPORT Created 5 years, 5 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "modules/fetch/Response.h" 6 #include "modules/fetch/Response.h"
7 7
8 #include "bindings/core/v8/ExceptionState.h" 8 #include "bindings/core/v8/ExceptionState.h"
9 #include "bindings/core/v8/ScriptState.h" 9 #include "bindings/core/v8/ScriptState.h"
10 #include "core/dom/Document.h" 10 #include "core/dom/Document.h"
11 #include "core/dom/ExceptionCode.h"
11 #include "core/frame/Frame.h" 12 #include "core/frame/Frame.h"
12 #include "core/testing/DummyPageHolder.h" 13 #include "core/testing/DummyPageHolder.h"
13 #include "modules/fetch/BodyStreamBuffer.h" 14 #include "modules/fetch/BodyStreamBuffer.h"
14 #include "modules/fetch/FetchResponseData.h" 15 #include "modules/fetch/FetchResponseData.h"
15 #include "platform/blob/BlobData.h" 16 #include "platform/blob/BlobData.h"
16 #include "public/platform/WebServiceWorkerResponse.h" 17 #include "public/platform/WebServiceWorkerResponse.h"
17 #include <gtest/gtest.h> 18 #include <gtest/gtest.h>
18 19
19 namespace blink { 20 namespace blink {
20 namespace { 21 namespace {
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 394
394 EXPECT_EQ(0, canceller->counter()); 395 EXPECT_EQ(0, canceller->counter());
395 response->bufferForTest()->cancel(); 396 response->bufferForTest()->cancel();
396 EXPECT_EQ(0, canceller->counter()); 397 EXPECT_EQ(0, canceller->counter());
397 clonedResponse->bufferForTest()->cancel(); 398 clonedResponse->bufferForTest()->cancel();
398 EXPECT_EQ(1, canceller->counter()); 399 EXPECT_EQ(1, canceller->counter());
399 } 400 }
400 401
401 } // namespace 402 } // namespace
402 } // namespace blink 403 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/fetch/FetchDataLoader.h ('k') | Source/modules/serviceworkers/RespondWithObserver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698