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 "ppapi/proxy/ppb_x509_certificate_private_proxy.h" | 5 #include "ppapi/proxy/ppb_x509_certificate_private_proxy.h" |
6 | 6 |
| 7 #include "base/macros.h" |
7 #include "ppapi/c/private/ppb_x509_certificate_private.h" | 8 #include "ppapi/c/private/ppb_x509_certificate_private.h" |
8 #include "ppapi/proxy/plugin_globals.h" | 9 #include "ppapi/proxy/plugin_globals.h" |
9 #include "ppapi/proxy/ppapi_messages.h" | 10 #include "ppapi/proxy/ppapi_messages.h" |
10 #include "ppapi/shared_impl/private/ppb_x509_certificate_private_shared.h" | 11 #include "ppapi/shared_impl/private/ppb_x509_certificate_private_shared.h" |
11 | 12 |
12 namespace ppapi { | 13 namespace ppapi { |
13 namespace proxy { | 14 namespace proxy { |
14 | 15 |
15 namespace { | 16 namespace { |
16 | 17 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 return (new X509CertificatePrivate(instance))->GetReference(); | 66 return (new X509CertificatePrivate(instance))->GetReference(); |
66 } | 67 } |
67 | 68 |
68 bool PPB_X509Certificate_Private_Proxy::OnMessageReceived( | 69 bool PPB_X509Certificate_Private_Proxy::OnMessageReceived( |
69 const IPC::Message& msg) { | 70 const IPC::Message& msg) { |
70 return false; | 71 return false; |
71 } | 72 } |
72 | 73 |
73 } // namespace proxy | 74 } // namespace proxy |
74 } // namespace ppapi | 75 } // namespace ppapi |
OLD | NEW |