| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |