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

Unified Diff: chrome/test/base/ui_test_utils.h

Issue 10541168: Add end to end client cert auth test for wss (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove p12 file Created 8 years, 5 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: chrome/test/base/ui_test_utils.h
diff --git a/chrome/test/base/ui_test_utils.h b/chrome/test/base/ui_test_utils.h
index 04ab3abf9ac81fa57c7a8a8a88c72437e0932386..76ee8f9e5615e3c1fb1046aeb4ec48d16874c253 100644
--- a/chrome/test/base/ui_test_utils.h
+++ b/chrome/test/base/ui_test_utils.h
@@ -360,6 +360,9 @@ class TestWebSocketServer {
// Serves with TLS.
void UseTLS();
+ // Serves with client cert authentication.
wtc 2012/07/11 21:35:57 Nit: this comment should say: // Requests client
Takashi Toyoshima 2012/07/12 05:20:13 Done.
+ void UseClientAuthentication();
+
// Starts the python websocket server using |root_directory|. Returns whether
// the server was successfully started.
bool Start(const FilePath& root_directory);
@@ -398,6 +401,9 @@ class TestWebSocketServer {
// If the python websocket server serves with TLS.
bool secure_;
+ // If the python websocket server serves with client cert authentication.
+ bool client_authentication_;
+
DISALLOW_COPY_AND_ASSIGN(TestWebSocketServer);
};

Powered by Google App Engine
This is Rietveld 408576698