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

Side by Side Diff: net/quic/quic_headers_stream.cc

Issue 763833003: Remove using namespace in net/quic/quic_stream_sequencer.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix missing part device_cloud_policy_manager_chromeos_unittest.cc Created 6 years 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/quic_data_stream_test.cc ('k') | net/quic/quic_reliable_client_stream_test.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/quic_headers_stream.h" 5 #include "net/quic/quic_headers_stream.h"
6 6
7 #include "net/quic/quic_session.h" 7 #include "net/quic/quic_session.h"
8 8
9 using base::StringPiece; 9 using base::StringPiece;
10 using std::string;
10 11
11 namespace net { 12 namespace net {
12 13
13 namespace { 14 namespace {
14 15
15 const QuicStreamId kInvalidStreamId = 0; 16 const QuicStreamId kInvalidStreamId = 0;
16 17
17 } // namespace 18 } // namespace
18 19
19 // A SpdyFramer visitor which passed SYN_STREAM and SYN_REPLY frames to 20 // A SpdyFramer visitor which passed SYN_STREAM and SYN_REPLY frames to
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 DCHECK_EQ(kInvalidStreamId, stream_id_); 270 DCHECK_EQ(kInvalidStreamId, stream_id_);
270 DCHECK_EQ(0u, frame_len_); 271 DCHECK_EQ(0u, frame_len_);
271 frame_len_ = frame_len; 272 frame_len_ = frame_len;
272 } 273 }
273 274
274 bool QuicHeadersStream::IsConnected() { 275 bool QuicHeadersStream::IsConnected() {
275 return session()->connection()->connected(); 276 return session()->connection()->connected();
276 } 277 }
277 278
278 } // namespace net 279 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quic_data_stream_test.cc ('k') | net/quic/quic_reliable_client_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698