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

Side by Side Diff: net/quic/core/quic_server_session_base.cc

Issue 2619993003: Move quic_bug_tracker to quic/platform. No functional change expected. (Closed)
Patch Set: fix two includes Created 3 years, 11 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
« no previous file with comments | « net/quic/core/quic_sent_packet_manager.cc ('k') | net/quic/core/quic_session.cc » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "net/quic/core/quic_server_session_base.h" 5 #include "net/quic/core/quic_server_session_base.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "net/quic/core/proto/cached_network_parameters.pb.h" 8 #include "net/quic/core/proto/cached_network_parameters.pb.h"
9 #include "net/quic/core/quic_bug_tracker.h"
10 #include "net/quic/core/quic_connection.h" 9 #include "net/quic/core/quic_connection.h"
11 #include "net/quic/core/quic_flags.h" 10 #include "net/quic/core/quic_flags.h"
12 #include "net/quic/core/quic_spdy_session.h" 11 #include "net/quic/core/quic_spdy_session.h"
13 #include "net/quic/core/quic_stream.h" 12 #include "net/quic/core/quic_stream.h"
13 #include "net/quic/platform/api/quic_bug_tracker.h"
14 14
15 using std::string; 15 using std::string;
16 16
17 namespace net { 17 namespace net {
18 18
19 QuicServerSessionBase::QuicServerSessionBase( 19 QuicServerSessionBase::QuicServerSessionBase(
20 const QuicConfig& config, 20 const QuicConfig& config,
21 QuicConnection* connection, 21 QuicConnection* connection,
22 Visitor* visitor, 22 Visitor* visitor,
23 QuicCryptoServerStream::Helper* helper, 23 QuicCryptoServerStream::Helper* helper,
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 232
233 int32_t QuicServerSessionBase::BandwidthToCachedParameterBytesPerSecond( 233 int32_t QuicServerSessionBase::BandwidthToCachedParameterBytesPerSecond(
234 const QuicBandwidth& bandwidth) { 234 const QuicBandwidth& bandwidth) {
235 int64_t bytes_per_second = bandwidth.ToBytesPerSecond(); 235 int64_t bytes_per_second = bandwidth.ToBytesPerSecond();
236 return (bytes_per_second > static_cast<int64_t>(INT32_MAX) 236 return (bytes_per_second > static_cast<int64_t>(INT32_MAX)
237 ? INT32_MAX 237 ? INT32_MAX
238 : static_cast<int32_t>(bytes_per_second)); 238 : static_cast<int32_t>(bytes_per_second));
239 } 239 }
240 240
241 } // namespace net 241 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/core/quic_sent_packet_manager.cc ('k') | net/quic/core/quic_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698