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

Side by Side Diff: webkit/plugins/ppapi/ppb_x509_certificate_private_impl.cc

Issue 19744007: Create a public API around webkit::ppapi::PluginInstance and use it in chrome. After this, webkit/p… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments and undo checkdeps change Created 7 years, 4 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
« no previous file with comments | « webkit/plugins/ppapi/ppb_widget_impl.cc ('k') | webkit/plugins/ppapi/quota_file_io.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "webkit/plugins/ppapi/ppb_x509_certificate_private_impl.h"
6 6
7 #include "webkit/plugins/ppapi/plugin_delegate.h" 7 #include "webkit/plugins/ppapi/plugin_delegate.h"
8 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h"
9 #include "webkit/plugins/ppapi/resource_helper.h" 8 #include "webkit/plugins/ppapi/resource_helper.h"
10 9
11 namespace webkit { 10 namespace webkit {
12 namespace ppapi { 11 namespace ppapi {
13 12
14 PPB_X509Certificate_Private_Impl::PPB_X509Certificate_Private_Impl( 13 PPB_X509Certificate_Private_Impl::PPB_X509Certificate_Private_Impl(
15 PP_Instance instance) : 14 PP_Instance instance) :
16 PPB_X509Certificate_Private_Shared(::ppapi::OBJECT_IS_IMPL, instance) { 15 PPB_X509Certificate_Private_Shared(::ppapi::OBJECT_IS_IMPL, instance) {
17 } 16 }
18 17
(...skipping 11 matching lines...) Expand all
30 return false; 29 return false;
31 30
32 return plugin_delegate->X509CertificateParseDER(der, result); 31 return plugin_delegate->X509CertificateParseDER(der, result);
33 } 32 }
34 33
35 PPB_X509Certificate_Private_Impl::~PPB_X509Certificate_Private_Impl() { 34 PPB_X509Certificate_Private_Impl::~PPB_X509Certificate_Private_Impl() {
36 } 35 }
37 36
38 } // namespace ppapi 37 } // namespace ppapi
39 } // namespace webkit 38 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_widget_impl.cc ('k') | webkit/plugins/ppapi/quota_file_io.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698