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

Unified Diff: content/renderer/pepper/pepper_plugin_delegate_impl.h

Issue 9405038: Add PPAPI interface for secure sockets in flash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 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: content/renderer/pepper/pepper_plugin_delegate_impl.h
diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.h b/content/renderer/pepper/pepper_plugin_delegate_impl.h
index a17df04d4d159dc5c99537275fe035a8b44de110..082c1854bb041e3123da780f7d46a9d91c809ef7 100644
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.h
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.h
@@ -45,6 +45,10 @@ namespace IPC {
struct ChannelHandle;
}
+namespace ppapi {
+class PPB_X509Certificate_Fields;
+}
+
namespace webkit {
struct WebPluginInfo;
namespace ppapi {
@@ -299,6 +303,9 @@ class PepperPluginDelegateImpl
virtual void TCPServerSocketAccept(uint32 real_socket_id) OVERRIDE;
virtual void TCPServerSocketStopListening(uint32 real_socket_id,
uint32 temp_socket_id) OVERRIDE;
+ virtual bool X509CertificateParseDER(
+ const std::vector<char>& der,
+ ppapi::PPB_X509Certificate_Fields* fields) OVERRIDE;
virtual int32_t ShowContextMenu(
webkit::ppapi::PluginInstance* instance,
@@ -354,9 +361,10 @@ class PepperPluginDelegateImpl
bool succeeded,
const PP_NetAddress_Private& local_addr,
const PP_NetAddress_Private& remote_addr);
- void OnTCPSocketSSLHandshakeACK(uint32 plugin_dispatcher_id,
- uint32 socket_id,
- bool succeeded);
+ void OnTCPSocketSSLHandshakeACK(
+ uint32 plugin_dispatcher_id,
+ uint32 socket_id,
+ bool succeeded);
void OnTCPSocketReadACK(uint32 plugin_dispatcher_id,
uint32 socket_id,
bool succeeded,
« no previous file with comments | « content/browser/renderer_host/pepper_tcp_socket.cc ('k') | content/renderer/pepper/pepper_plugin_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698