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

Side by Side Diff: net/websockets/websocket_stream_create_test_base.cc

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> net/log… 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/websockets/websocket_stream_create_test_base.h" 5 #include "net/websockets/websocket_stream_create_test_base.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "net/http/http_request_headers.h" 11 #include "net/http/http_request_headers.h"
12 #include "net/http/http_response_headers.h" 12 #include "net/http/http_response_headers.h"
13 #include "net/log/net_log_with_source.h"
13 #include "net/websockets/websocket_basic_handshake_stream.h" 14 #include "net/websockets/websocket_basic_handshake_stream.h"
14 #include "net/websockets/websocket_handshake_request_info.h" 15 #include "net/websockets/websocket_handshake_request_info.h"
15 #include "net/websockets/websocket_handshake_response_info.h" 16 #include "net/websockets/websocket_handshake_response_info.h"
16 #include "net/websockets/websocket_handshake_stream_create_helper.h" 17 #include "net/websockets/websocket_handshake_stream_create_helper.h"
17 #include "net/websockets/websocket_stream.h" 18 #include "net/websockets/websocket_stream.h"
18 #include "url/gurl.h" 19 #include "url/gurl.h"
19 #include "url/origin.h" 20 #include "url/origin.h"
20 21
21 namespace net { 22 namespace net {
22 23
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 146
146 void WebSocketStreamCreateTestBase::WaitUntilConnectDone() { 147 void WebSocketStreamCreateTestBase::WaitUntilConnectDone() {
147 connect_run_loop_.Run(); 148 connect_run_loop_.Run();
148 } 149 }
149 150
150 std::vector<std::string> WebSocketStreamCreateTestBase::NoSubProtocols() { 151 std::vector<std::string> WebSocketStreamCreateTestBase::NoSubProtocols() {
151 return std::vector<std::string>(); 152 return std::vector<std::string>();
152 } 153 }
153 154
154 } // namespace net 155 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698