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

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: Cleanup before sending for reviews. 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..2a09f82097db8ed464d64d7f49d1cb0dca257fc5 100644
--- a/net/socket/socket_test_util.h
+++ b/net/socket/socket_test_util.h
@@ -519,6 +519,8 @@ class SocketDataProviderArray {
public:
SocketDataProviderArray() : next_index_(0) {}
+ size_t next_index() { return next_index_; }
wtc 2013/04/17 19:49:50 Nit: move this getter method to be next to the rel
thaidn_google 2013/04/17 22:16:07 Done.
+
T* GetNext() {
DCHECK_LT(next_index_, data_providers_.size());
return data_providers_[next_index_++];

Powered by Google App Engine
This is Rietveld 408576698