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

Side by Side Diff: blimp/net/helium/helium_stream.cc

Issue 2383533003: Blimp: define HeliumTransport/HeliumStream interfaces. (Closed)
Patch Set: typo Created 4 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
OLDNEW
(Empty)
1 // Copyright 2016 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 "blimp/net/helium/helium_stream.h"
6
7 #include <utility>
8
9 #include "base/logging.h"
10
11 // Include added temporarily to get helium_transport.h to compile.
12 // Will be removed as soon as there is a legitimate dependency on
13 // helium_transport.h.
14 // TODO(kmarshall): Remove this include.
15 #include "blimp/net/helium/helium_transport.h"
16
17 namespace blimp {
18
19 HeliumStream::HeliumStream() {}
20
21 HeliumStream::~HeliumStream() {}
22
23 void HeliumStream::SetDelegate(
24 std::unique_ptr<HeliumStream::Delegate> delegate) {
25 DCHECK(delegate);
26 delegate_ = std::move(delegate);
27 }
28
29 } // namespace blimp
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698