Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |