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

Side by Side Diff: net/http/http_stream_factory_impl_job.h

Issue 2232313004: Revert of QUIC - track the time it takes for OnStreamReadyCallback() to (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Marked it as obsolete. Created 4 years, 4 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 | « no previous file | net/http/http_stream_factory_impl_job.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_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_
6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 base::WeakPtr<SpdySession> new_spdy_session_; 458 base::WeakPtr<SpdySession> new_spdy_session_;
459 459
460 // Initialized when we have an existing SpdySession. 460 // Initialized when we have an existing SpdySession.
461 base::WeakPtr<SpdySession> existing_spdy_session_; 461 base::WeakPtr<SpdySession> existing_spdy_session_;
462 462
463 // Only used if |new_spdy_session_| is non-NULL. 463 // Only used if |new_spdy_session_| is non-NULL.
464 bool spdy_session_direct_; 464 bool spdy_session_direct_;
465 465
466 JobStatus job_status_; 466 JobStatus job_status_;
467 JobStatus other_job_status_; 467 JobStatus other_job_status_;
468 base::TimeTicks job_stream_ready_start_time_;
469 468
470 // Type of stream that is requested. 469 // Type of stream that is requested.
471 HttpStreamRequest::StreamType stream_type_; 470 HttpStreamRequest::StreamType stream_type_;
472 471
473 base::WeakPtrFactory<Job> ptr_factory_; 472 base::WeakPtrFactory<Job> ptr_factory_;
474 473
475 DISALLOW_COPY_AND_ASSIGN(Job); 474 DISALLOW_COPY_AND_ASSIGN(Job);
476 }; 475 };
477 476
478 // Factory for creating Jobs. 477 // Factory for creating Jobs.
(...skipping 25 matching lines...) Expand all
504 const SSLConfig& server_ssl_config, 503 const SSLConfig& server_ssl_config,
505 const SSLConfig& proxy_ssl_config, 504 const SSLConfig& proxy_ssl_config,
506 HostPortPair destination, 505 HostPortPair destination,
507 GURL origin_url, 506 GURL origin_url,
508 NetLog* net_log) = 0; 507 NetLog* net_log) = 0;
509 }; 508 };
510 509
511 } // namespace net 510 } // namespace net
512 511
513 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ 512 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_
OLDNEW
« no previous file with comments | « no previous file | net/http/http_stream_factory_impl_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698