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

Side by Side Diff: net/quic/quartc/quartc_connection_helper.cc

Issue 2324833004: Define Stable API for WebRTC/Quartc (Closed)
Patch Set: Patch Set 4 : Create QuartcFactory. Made modification on the API. Change the constructor of QuartcS… Created 4 years, 3 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 (c) 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 "net/quic/quartc/quartc_connection_helper.h"
6
7 namespace net {
8
9 QuartcConnectionHelper::~QuartcConnectionHelper() {}
10
11 const QuicClock* QuartcConnectionHelper::GetClock() const {
12 return &clock_;
13 }
14
15 QuicRandom* QuartcConnectionHelper::GetRandomGenerator() {
16 return QuicRandom::GetInstance();
17 }
18
19 QuicBufferAllocator* QuartcConnectionHelper::GetBufferAllocator() {
20 return &buffer_allocator_;
21 }
22 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698