Chromium Code Reviews| Index: webkit/plugins/ppapi/plugin_delegate.h |
| diff --git a/webkit/plugins/ppapi/plugin_delegate.h b/webkit/plugins/ppapi/plugin_delegate.h |
| index 8b6f4434271b7348c64645fc892bb36a4d23d6cb..772413d35437cc440e8dab6b7368520400e55646 100644 |
| --- a/webkit/plugins/ppapi/plugin_delegate.h |
| +++ b/webkit/plugins/ppapi/plugin_delegate.h |
| @@ -58,6 +58,7 @@ namespace ppapi { |
| class PPB_HostResolver_Shared; |
| struct DeviceRefData; |
| struct HostPortPair; |
| +class PPB_X509Certificate_Fields; |
|
yzshen1
2012/03/26 17:51:08
If you sort ignoring class/struct, you should move
raymes
2012/03/26 19:31:34
Done.
|
| struct Preferences; |
| } |
| @@ -522,6 +523,11 @@ class PluginDelegate { |
| virtual void RemoveNetworkListObserver( |
| webkit_glue::NetworkListObserver* observer) = 0; |
| + // For PPB_X509Certificate_Private. |
| + virtual bool X509CertificateParseDER( |
| + const std::vector<char>& der, |
| + ::ppapi::PPB_X509Certificate_Fields* fields) = 0; |
| + |
| // Show the given context menu at the given position (in the plugin's |
| // coordinates). |
| virtual int32_t ShowContextMenu( |