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

Unified Diff: webkit/plugins/ppapi/mock_plugin_delegate.cc

Issue 9699100: Add functionality to pppapi TCPSocket to support secure sockets in flash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 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: webkit/plugins/ppapi/mock_plugin_delegate.cc
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc
index 78e3fc99f13b277d4ae8cd2de533e0cdf4cf1a43..8ea35c856dc12a37a285a7bc7fb5c052a79b8df7 100644
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc
@@ -250,9 +250,12 @@ void MockPluginDelegate::TCPSocketConnectWithNetAddress(
const PP_NetAddress_Private& addr) {
}
-void MockPluginDelegate::TCPSocketSSLHandshake(uint32 socket_id,
- const std::string& server_name,
- uint16_t server_port) {
+void MockPluginDelegate::TCPSocketSSLHandshake(
+ uint32 socket_id,
+ const std::string& server_name,
+ uint16_t server_port,
+ const std::vector<std::vector<char> >& trusted_certs,
+ const std::vector<std::vector<char> >& untrusted_certs) {
}
void MockPluginDelegate::TCPSocketRead(uint32 socket_id,

Powered by Google App Engine
This is Rietveld 408576698