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

Unified Diff: net/socket/socket_test_util.h

Issue 14125003: Do not roll back to SSL 3.0 for Google properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a bug that prevents TLS 1.1 -> TLS 1.0 fallback. Created 7 years, 8 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
Index: net/socket/socket_test_util.h
diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h
index df30d23e4e43b2adced01fda7fd7d630a6a39fed..e7377657bc897c0d40a34b59b8d08cc983e69175 100644
--- a/net/socket/socket_test_util.h
+++ b/net/socket/socket_test_util.h
@@ -529,6 +529,8 @@ class SocketDataProviderArray {
data_providers_.push_back(data_provider);
}
+ size_t next_index() { return next_index_; }
+
void ResetNextIndex() {
wtc 2013/04/18 18:15:34 Nit and optional: we should rename this method "re
next_index_ = 0;
}

Powered by Google App Engine
This is Rietveld 408576698