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

Unified Diff: net/quic/quic_stream_factory.h

Issue 602763004: QUIC - Used Quic and IP Address in prefs persistent store. It is (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@persist_global
Patch Set: Fix try bot error Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_stream_factory.h
diff --git a/net/quic/quic_stream_factory.h b/net/quic/quic_stream_factory.h
index c5aa835a4b8869e3bd6303dd652471114aa75968..410a7af1236c2dcc382974224c9d90900c2299aa 100644
--- a/net/quic/quic_stream_factory.h
+++ b/net/quic/quic_stream_factory.h
@@ -160,9 +160,7 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
return require_confirmation_;
}
- void set_require_confirmation(bool require_confirmation) {
- require_confirmation_ = require_confirmation;
- }
+ void set_require_confirmation(bool require_confirmation);
QuicConnectionHelper* helper() { return helper_.get(); }
@@ -293,6 +291,10 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
// port requests.
uint64 port_seed_;
+ // Local address of socket that was created in CreateSession.
+ IPEndPoint local_address_;
+ bool check_persisted_supports_quic_;
+
base::WeakPtrFactory<QuicStreamFactory> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory);
« no previous file with comments | « no previous file | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698