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

Unified Diff: content/browser/renderer_host/pepper_message_filter.h

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
« no previous file with comments | « chrome/test/ui/ppapi_uitest.cc ('k') | content/browser/renderer_host/pepper_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/pepper_message_filter.h
diff --git a/content/browser/renderer_host/pepper_message_filter.h b/content/browser/renderer_host/pepper_message_filter.h
index d63a73000fd08116ed568ab527f427d8fb35d5b0..d10f6d0e1571fb1af0f306a70b7248d1a97762fa 100644
--- a/content/browser/renderer_host/pepper_message_filter.h
+++ b/content/browser/renderer_host/pepper_message_filter.h
@@ -8,6 +8,7 @@
#include <map>
#include <string>
+#include <vector>
#include "base/basictypes.h"
#include "base/memory/linked_ptr.h"
@@ -133,9 +134,12 @@ class PepperMessageFilter
void OnTCPConnectWithNetAddress(int32 routing_id,
uint32 socket_id,
const PP_NetAddress_Private& net_addr);
- void OnTCPSSLHandshake(uint32 socket_id,
- const std::string& server_name,
- uint16_t server_port);
+ void OnTCPSSLHandshake(
+ 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 OnTCPRead(uint32 socket_id, int32_t bytes_to_read);
void OnTCPWrite(uint32 socket_id, const std::string& data);
void OnTCPDisconnect(uint32 socket_id);
« no previous file with comments | « chrome/test/ui/ppapi_uitest.cc ('k') | content/browser/renderer_host/pepper_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698