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

Side by Side Diff: Source/core/streams/ReadableStreamTest.cpp

Issue 606653006: bindings: Adds DOMArrayBuffer, etc. as thin wrappers for ArrayBuffer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/streams/ReadableStreamImpl.h ('k') | Source/core/testing/Internals.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "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
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
OLDNEW
« no previous file with comments | « Source/core/streams/ReadableStreamImpl.h ('k') | Source/core/testing/Internals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698