| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PPAPI_SHARED_IMPL_PRIVATE_PPB_X509_CERTIFICATE_PRIVATE_IMPL_H_ | 5 #ifndef PPAPI_SHARED_IMPL_PRIVATE_PPB_X509_CERTIFICATE_PRIVATE_IMPL_H_ |
| 6 #define PPAPI_SHARED_IMPL_PRIVATE_PPB_X509_CERTIFICATE_PRIVATE_IMPL_H_ | 6 #define PPAPI_SHARED_IMPL_PRIVATE_PPB_X509_CERTIFICATE_PRIVATE_IMPL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 PP_Instance instance); | 46 PP_Instance instance); |
| 47 // Used by tcp_socket_shared_impl to construct a certificate resource from a | 47 // Used by tcp_socket_shared_impl to construct a certificate resource from a |
| 48 // server certificate. | 48 // server certificate. |
| 49 PPB_X509Certificate_Private_Shared(ResourceObjectType type, | 49 PPB_X509Certificate_Private_Shared(ResourceObjectType type, |
| 50 PP_Instance instance, | 50 PP_Instance instance, |
| 51 const PPB_X509Certificate_Fields& fields); | 51 const PPB_X509Certificate_Fields& fields); |
| 52 virtual ~PPB_X509Certificate_Private_Shared(); | 52 virtual ~PPB_X509Certificate_Private_Shared(); |
| 53 | 53 |
| 54 // Resource overrides. | 54 // Resource overrides. |
| 55 virtual PPB_X509Certificate_Private_API* | 55 virtual PPB_X509Certificate_Private_API* |
| 56 AsPPB_X509Certificate_Private_API() OVERRIDE; | 56 AsPPB_X509Certificate_Private_API() override; |
| 57 | 57 |
| 58 // PPB_X509Certificate_Private_API implementation. | 58 // PPB_X509Certificate_Private_API implementation. |
| 59 virtual PP_Bool Initialize(const char* bytes, uint32_t length) OVERRIDE; | 59 virtual PP_Bool Initialize(const char* bytes, uint32_t length) override; |
| 60 virtual PP_Var GetField(PP_X509Certificate_Private_Field field) OVERRIDE; | 60 virtual PP_Var GetField(PP_X509Certificate_Private_Field field) override; |
| 61 | 61 |
| 62 protected: | 62 protected: |
| 63 virtual bool ParseDER(const std::vector<char>& der, | 63 virtual bool ParseDER(const std::vector<char>& der, |
| 64 PPB_X509Certificate_Fields* result); | 64 PPB_X509Certificate_Fields* result); |
| 65 | 65 |
| 66 private: | 66 private: |
| 67 scoped_ptr<PPB_X509Certificate_Fields> fields_; | 67 scoped_ptr<PPB_X509Certificate_Fields> fields_; |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(PPB_X509Certificate_Private_Shared); | 69 DISALLOW_COPY_AND_ASSIGN(PPB_X509Certificate_Private_Shared); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace ppapi | 72 } // namespace ppapi |
| 73 | 73 |
| 74 #endif // PPAPI_SHARED_IMPL_PRIVATE_X509_CERTIFICATE_PRIVATE_IMPL_H_ | 74 #endif // PPAPI_SHARED_IMPL_PRIVATE_X509_CERTIFICATE_PRIVATE_IMPL_H_ |
| OLD | NEW |