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

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

Issue 9693024: Add the PPAPI X509 Certificate interface and implementation. (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 25cb8e2dc2c0210491d4e0050d628112f039fc83..52f9053905d4e4a0878af2ad85e69c2a8bd3af19 100644
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.h
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.h
@@ -48,6 +48,10 @@ namespace IPC {
struct ChannelHandle;
}
+namespace ppapi {
+class PPB_X509Certificate_Fields;
+}
+
namespace ui {
class Range;
}
@@ -320,6 +324,10 @@ class PepperPluginDelegateImpl
const PP_HostResolver_Private_Hint* hint) OVERRIDE;
virtual void UnregisterHostResolver(uint32 host_resolver_id) OVERRIDE;
+ virtual bool X509CertificateParseDER(
+ const std::vector<char>& der,
+ ppapi::PPB_X509Certificate_Fields* fields) OVERRIDE;
+
virtual bool AddNetworkListObserver(
webkit_glue::NetworkListObserver* observer) OVERRIDE;
virtual void RemoveNetworkListObserver(

Powered by Google App Engine
This is Rietveld 408576698