| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PPB_PDF_PROXY_H_ | 5 #ifndef PPAPI_PPB_PDF_PROXY_H_ |
| 6 #define PPAPI_PPB_PDF_PROXY_H_ | 6 #define PPAPI_PPB_PDF_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> |
| 9 |
| 8 #include "ppapi/c/pp_module.h" | 10 #include "ppapi/c/pp_module.h" |
| 9 #include "ppapi/proxy/interface_proxy.h" | 11 #include "ppapi/proxy/interface_proxy.h" |
| 10 #include "ppapi/shared_impl/host_resource.h" | 12 #include "ppapi/shared_impl/host_resource.h" |
| 11 | 13 |
| 12 struct PPB_PDF; | 14 struct PPB_PDF; |
| 13 | 15 |
| 14 namespace ppapi { | 16 namespace ppapi { |
| 15 namespace proxy { | 17 namespace proxy { |
| 16 | 18 |
| 17 struct SerializedFontDescription; | 19 struct SerializedFontDescription; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 39 // When this proxy is in the host side, this value caches the interface | 41 // When this proxy is in the host side, this value caches the interface |
| 40 // pointer so we don't have to retrieve it from the dispatcher each time. | 42 // pointer so we don't have to retrieve it from the dispatcher each time. |
| 41 // In the plugin, this value is always NULL. | 43 // In the plugin, this value is always NULL. |
| 42 const PPB_PDF* ppb_pdf_impl_; | 44 const PPB_PDF* ppb_pdf_impl_; |
| 43 }; | 45 }; |
| 44 | 46 |
| 45 } // namespace proxy | 47 } // namespace proxy |
| 46 } // namespace ppapi | 48 } // namespace ppapi |
| 47 | 49 |
| 48 #endif // PPAPI_PPB_PDF_PROXY_H_ | 50 #endif // PPAPI_PPB_PDF_PROXY_H_ |
| OLD | NEW |