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/DOMException.h" | 12 #include "core/dom/DOMException.h" |
| 13 #include "core/dom/Document.h" |
13 #include "core/dom/ExceptionCode.h" | 14 #include "core/dom/ExceptionCode.h" |
14 #include "core/streams/ReadableStreamImpl.h" | 15 #include "core/streams/ReadableStreamImpl.h" |
15 #include "core/streams/UnderlyingSource.h" | 16 #include "core/streams/UnderlyingSource.h" |
16 #include "core/testing/DummyPageHolder.h" | 17 #include "core/testing/DummyPageHolder.h" |
17 #include <gmock/gmock.h> | 18 #include <gmock/gmock.h> |
18 #include <gtest/gtest.h> | 19 #include <gtest/gtest.h> |
19 | 20 |
20 namespace blink { | 21 namespace blink { |
21 | 22 |
22 using ::testing::_; | 23 using ::testing::_; |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 } | 652 } |
652 | 653 |
653 TEST_F(ReadableStreamTest, ReadableArrayBufferCompileTest) | 654 TEST_F(ReadableStreamTest, ReadableArrayBufferCompileTest) |
654 { | 655 { |
655 // This test tests if ReadableStreamImpl<ArrayBuffer> can be instantiated. | 656 // This test tests if ReadableStreamImpl<ArrayBuffer> can be instantiated. |
656 new ReadableStreamImpl<ReadableStreamChunkTypeTraits<ArrayBuffer> >(scriptSt
ate()->executionContext(), m_underlyingSource); | 657 new ReadableStreamImpl<ReadableStreamChunkTypeTraits<ArrayBuffer> >(scriptSt
ate()->executionContext(), m_underlyingSource); |
657 } | 658 } |
658 | 659 |
659 } // namespace blink | 660 } // namespace blink |
660 | 661 |
OLD | NEW |