| 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 "core/streams/ReadableStream.h" | 6 #include "core/streams/ReadableStream.h" |
| 7 | 7 |
| 8 #include "bindings/core/v8/ExceptionState.h" | 8 #include "bindings/core/v8/ExceptionState.h" |
| 9 #include "bindings/core/v8/ScriptPromiseResolver.h" | 9 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 10 #include "bindings/core/v8/ScriptState.h" | 10 #include "bindings/core/v8/ScriptState.h" |
| 11 #include "bindings/core/v8/V8Binding.h" | 11 #include "bindings/core/v8/V8Binding.h" |
| 12 #include "core/dom/DOMArrayBuffer.h" |
| 12 #include "core/dom/DOMException.h" | 13 #include "core/dom/DOMException.h" |
| 13 #include "core/dom/Document.h" | 14 #include "core/dom/Document.h" |
| 14 #include "core/dom/ExceptionCode.h" | 15 #include "core/dom/ExceptionCode.h" |
| 15 #include "core/streams/ReadableStreamImpl.h" | 16 #include "core/streams/ReadableStreamImpl.h" |
| 16 #include "core/streams/UnderlyingSource.h" | 17 #include "core/streams/UnderlyingSource.h" |
| 17 #include "core/testing/DummyPageHolder.h" | 18 #include "core/testing/DummyPageHolder.h" |
| 18 #include <gmock/gmock.h> | 19 #include <gmock/gmock.h> |
| 19 #include <gtest/gtest.h> | 20 #include <gtest/gtest.h> |
| 20 | 21 |
| 21 namespace blink { | 22 namespace blink { |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 EXPECT_TRUE(onFulfilled.isNull()); | 647 EXPECT_TRUE(onFulfilled.isNull()); |
| 647 EXPECT_TRUE(onRejected.isNull()); | 648 EXPECT_TRUE(onRejected.isNull()); |
| 648 | 649 |
| 649 isolate()->RunMicrotasks(); | 650 isolate()->RunMicrotasks(); |
| 650 EXPECT_EQ("undefined", onFulfilled); | 651 EXPECT_EQ("undefined", onFulfilled); |
| 651 EXPECT_TRUE(onRejected.isNull()); | 652 EXPECT_TRUE(onRejected.isNull()); |
| 652 } | 653 } |
| 653 | 654 |
| 654 TEST_F(ReadableStreamTest, ReadableArrayBufferCompileTest) | 655 TEST_F(ReadableStreamTest, ReadableArrayBufferCompileTest) |
| 655 { | 656 { |
| 656 // This test tests if ReadableStreamImpl<ArrayBuffer> can be instantiated. | 657 // This test tests if ReadableStreamImpl<DOMArrayBuffer> can be instantiated
. |
| 657 new ReadableStreamImpl<ReadableStreamChunkTypeTraits<ArrayBuffer> >(scriptSt
ate()->executionContext(), m_underlyingSource); | 658 new ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMArrayBuffer> >(scrip
tState()->executionContext(), m_underlyingSource); |
| 658 } | 659 } |
| 659 | 660 |
| 660 } // namespace blink | 661 } // namespace blink |
| 661 | |
| OLD | NEW |