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 #include "webkit/plugins/ppapi/ppb_x509_certificate_private_impl.h" | 5 #include "content/renderer/pepper/ppb_x509_certificate_private_impl.h" |
6 | 6 |
7 #include "webkit/plugins/ppapi/plugin_delegate.h" | 7 #include "content/renderer/pepper/plugin_delegate.h" |
8 #include "webkit/plugins/ppapi/resource_helper.h" | 8 #include "content/renderer/pepper/resource_helper.h" |
9 | 9 |
10 namespace webkit { | 10 namespace webkit { |
11 namespace ppapi { | 11 namespace ppapi { |
12 | 12 |
13 PPB_X509Certificate_Private_Impl::PPB_X509Certificate_Private_Impl( | 13 PPB_X509Certificate_Private_Impl::PPB_X509Certificate_Private_Impl( |
14 PP_Instance instance) : | 14 PP_Instance instance) : |
15 PPB_X509Certificate_Private_Shared(::ppapi::OBJECT_IS_IMPL, instance) { | 15 PPB_X509Certificate_Private_Shared(::ppapi::OBJECT_IS_IMPL, instance) { |
16 } | 16 } |
17 | 17 |
18 // static | 18 // static |
(...skipping 10 matching lines...) Expand all Loading... |
29 return false; | 29 return false; |
30 | 30 |
31 return plugin_delegate->X509CertificateParseDER(der, result); | 31 return plugin_delegate->X509CertificateParseDER(der, result); |
32 } | 32 } |
33 | 33 |
34 PPB_X509Certificate_Private_Impl::~PPB_X509Certificate_Private_Impl() { | 34 PPB_X509Certificate_Private_Impl::~PPB_X509Certificate_Private_Impl() { |
35 } | 35 } |
36 | 36 |
37 } // namespace ppapi | 37 } // namespace ppapi |
38 } // namespace webkit | 38 } // namespace webkit |
OLD | NEW |