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 6ec213e0db55eac67c69a51352302f20e9785863..de84453476f58b579e6f02df9c62dbc40608e607 100644 |
--- a/chrome/test/base/ui_test_utils.h |
+++ b/chrome/test/base/ui_test_utils.h |
@@ -359,6 +359,9 @@ class TestWebSocketServer { |
// Serves with TLS. |
void UseTLS(); |
+ // Requests client cert authentication. |
+ void UseClientAuthentication(); |
+ |
// Starts the python websocket server using |root_directory|. Returns whether |
// the server was successfully started. |
bool Start(const FilePath& root_directory); |
@@ -397,6 +400,9 @@ class TestWebSocketServer { |
// If the python websocket server serves with TLS. |
bool secure_; |
+ // If the python websocket server requests client cert authentication. |
+ bool client_authentication_; |
+ |
DISALLOW_COPY_AND_ASSIGN(TestWebSocketServer); |
}; |