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

Side by Side Diff: webkit/plugins/ppapi/ppb_flash_x509_certificate_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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FLASH_X509_CERTIFICATE_IMPL_H_
6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_X509_CERTIFICATE_IMPL_H_
7
8 #include "base/compiler_specific.h"
9 #include "ppapi/shared_impl/private/ppb_flash_x509_certificate_shared.h"
10 #include "ppapi/shared_impl/resource.h"
11
12 namespace ppapi {
13 class PPB_X509Certificate_Fields;
14 }
15
16 namespace webkit {
17 namespace ppapi {
18
19 class PPB_Flash_X509Certificate_Impl :
20 public ::ppapi::PPB_Flash_X509Certificate_Shared {
21 public:
22 static PP_Resource CreateResource(PP_Instance instance);
yzshen1 2012/03/22 23:32:40 wrong indent. (And the line below.)
raymes 2012/03/26 16:05:57 Done.
23 PPB_Flash_X509Certificate_Impl(::ppapi::ResourceObjectType type,
yzshen1 2012/03/22 23:32:40 nit: if OBJECT_IS_IMPL is the only value to use, y
raymes 2012/03/26 16:05:57 Done.
24 PP_Instance instance);
25 virtual bool ParseDER(const std::vector<char>& der,
26 ::ppapi::PPB_X509Certificate_Fields* result) OVERRIDE;
27
28 private:
29 virtual ~PPB_Flash_X509Certificate_Impl();
30
31 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_X509Certificate_Impl);
32 };
33
34 } // namespace ppapi
35 } // namespace webkit
36
37 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_X509_CERTIFICATE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698