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

Side by Side Diff: net/socket_stream/socket_stream.h

Issue 9617039: Change Origin bound certs -> Domain bound certs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « net/socket/ssl_server_socket_unittest.cc ('k') | net/socket_stream/socket_stream.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 #ifndef NET_SOCKET_STREAM_SOCKET_STREAM_H_ 5 #ifndef NET_SOCKET_STREAM_SOCKET_STREAM_H_
6 #define NET_SOCKET_STREAM_SOCKET_STREAM_H_ 6 #define NET_SOCKET_STREAM_SOCKET_STREAM_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 319
320 GURL url_; 320 GURL url_;
321 int max_pending_send_allowed_; 321 int max_pending_send_allowed_;
322 scoped_refptr<URLRequestContext> context_; 322 scoped_refptr<URLRequestContext> context_;
323 323
324 UserDataMap user_data_; 324 UserDataMap user_data_;
325 325
326 State next_state_; 326 State next_state_;
327 HostResolver* host_resolver_; 327 HostResolver* host_resolver_;
328 CertVerifier* cert_verifier_; 328 CertVerifier* cert_verifier_;
329 OriginBoundCertService* origin_bound_cert_service_; 329 ServerBoundCertService* server_bound_cert_service_;
330 HttpAuthHandlerFactory* http_auth_handler_factory_; 330 HttpAuthHandlerFactory* http_auth_handler_factory_;
331 ClientSocketFactory* factory_; 331 ClientSocketFactory* factory_;
332 332
333 ProxyMode proxy_mode_; 333 ProxyMode proxy_mode_;
334 334
335 GURL proxy_url_; 335 GURL proxy_url_;
336 ProxyService::PacRequest* pac_request_; 336 ProxyService::PacRequest* pac_request_;
337 ProxyInfo proxy_info_; 337 ProxyInfo proxy_info_;
338 338
339 HttpAuthCache auth_cache_; 339 HttpAuthCache auth_cache_;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 bool server_closed_; 375 bool server_closed_;
376 376
377 scoped_ptr<SocketStreamMetrics> metrics_; 377 scoped_ptr<SocketStreamMetrics> metrics_;
378 378
379 DISALLOW_COPY_AND_ASSIGN(SocketStream); 379 DISALLOW_COPY_AND_ASSIGN(SocketStream);
380 }; 380 };
381 381
382 } // namespace net 382 } // namespace net
383 383
384 #endif // NET_SOCKET_STREAM_SOCKET_STREAM_H_ 384 #endif // NET_SOCKET_STREAM_SOCKET_STREAM_H_
OLDNEW
« no previous file with comments | « net/socket/ssl_server_socket_unittest.cc ('k') | net/socket_stream/socket_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698