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

Side by Side Diff: Source/core/testing/ReadableStreamTestCase.cpp

Issue 1167343002: Add methods for creating V8 extras-based ReadableStreams from C++ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: That todo is not necessary according to yhirano@ 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "config.h"
6 #include "core/testing/ReadableStreamTestCase.h"
7
8 #include "core/testing/ReadableStreamTestRequest.h"
9 #include "core/testing/ReadableStreamTestSource.h"
10
11 namespace blink {
12
13 ReadableStreamTestCase::ReadableStreamTestCase(ScriptState* scriptState)
14 : m_source(new ReadableStreamTestSource(scriptState))
15 , m_request(new ReadableStreamTestRequest(scriptState, m_source))
16 {
17 }
18
19 DEFINE_TRACE(ReadableStreamTestCase)
20 {
21 visitor->trace(m_request);
22 visitor->trace(m_source);
23 }
24
25 }
OLDNEW
« no previous file with comments | « Source/core/testing/ReadableStreamTestCase.h ('k') | Source/core/testing/ReadableStreamTestCase.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698