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

Side by Side Diff: net/tools/quic/quic_simple_server_stream_test.cc

Issue 1551753002: Build third-party code with -Wall, build chromium_code with -Wextra on Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: thestig Created 4 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/tools/quic/quic_simple_server_stream.h" 5 #include "net/tools/quic/quic_simple_server_stream.h"
6 6
7 #include "base/strings/string_number_conversions.h" 7 #include "base/strings/string_number_conversions.h"
8 #include "base/strings/string_piece.h" 8 #include "base/strings/string_piece.h"
9 #include "net/quic/quic_connection.h" 9 #include "net/quic/quic_connection.h"
10 #include "net/quic/quic_flags.h" 10 #include "net/quic/quic_flags.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 } 58 }
59 59
60 static void SendErrorResponse(QuicSimpleServerStream* stream) { 60 static void SendErrorResponse(QuicSimpleServerStream* stream) {
61 stream->SendErrorResponse(); 61 stream->SendErrorResponse();
62 } 62 }
63 63
64 static const string& body(QuicSimpleServerStream* stream) { 64 static const string& body(QuicSimpleServerStream* stream) {
65 return stream->body_; 65 return stream->body_;
66 } 66 }
67 67
68 static const int content_length(QuicSimpleServerStream* stream) { 68 static int content_length(QuicSimpleServerStream* stream) {
69 return stream->content_length_; 69 return stream->content_length_;
70 } 70 }
71 71
72 static SpdyHeaderBlock& headers(QuicSimpleServerStream* stream) { 72 static SpdyHeaderBlock& headers(QuicSimpleServerStream* stream) {
73 return stream->request_headers_; 73 return stream->request_headers_;
74 } 74 }
75 }; 75 };
76 76
77 namespace { 77 namespace {
78 78
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 StringPiece data(arr, arraysize(arr)); 489 StringPiece data(arr, arraysize(arr));
490 QuicStreamFrame frame(stream_->id(), true, 0, data); 490 QuicStreamFrame frame(stream_->id(), true, 0, data);
491 // Verify that we don't crash when we get a invalid headers in stream frame. 491 // Verify that we don't crash when we get a invalid headers in stream frame.
492 stream_->OnStreamFrame(frame); 492 stream_->OnStreamFrame(frame);
493 } 493 }
494 494
495 } // namespace 495 } // namespace
496 } // namespace test 496 } // namespace test
497 } // namespace tools 497 } // namespace tools
498 } // namespace net 498 } // namespace net
OLDNEW
« no previous file with comments | « media/capture/video/linux/v4l2_capture_delegate.h ('k') | ppapi/native_client/src/untrusted/irt_stub/thread_creator.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698