| 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_PROXY_PPB_FONT_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_FONT_PROXY_H_ |
| 6 #define PPAPI_PROXY_PPB_FONT_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_FONT_PROXY_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/synchronization/waitable_event.h" | 9 #include "base/synchronization/waitable_event.h" |
| 10 #include "ppapi/proxy/interface_proxy.h" | 10 #include "ppapi/proxy/interface_proxy.h" |
| 11 #include "ppapi/shared_impl/function_group_base.h" | 11 #include "ppapi/shared_impl/function_group_base.h" |
| 12 #include "ppapi/shared_impl/host_resource.h" | 12 #include "ppapi/shared_impl/host_resource.h" |
| 13 #include "ppapi/shared_impl/resource.h" | 13 #include "ppapi/shared_impl/resource.h" |
| 14 #include "ppapi/shared_impl/webkit_forwarding.h" | 14 #include "ppapi/shared_impl/webkit_forwarding.h" |
| 15 #include "ppapi/thunk/ppb_font_api.h" | 15 #include "ppapi/thunk/ppb_font_api.h" |
| 16 | 16 |
| 17 struct PPB_Font_Dev; | 17 struct PPB_Font_Dev; |
| 18 | 18 |
| 19 namespace ppapi { | 19 namespace ppapi { |
| 20 namespace proxy { | 20 namespace proxy { |
| 21 | 21 |
| 22 class SerializedVarReturnValue; | 22 class SerializedVarReturnValue; |
| 23 | 23 |
| 24 class PPB_Font_Proxy : public InterfaceProxy, | 24 class PPB_Font_Proxy : public ppapi::FunctionGroupBase, |
| 25 public ppapi::thunk::PPB_Font_FunctionAPI { | 25 public ppapi::thunk::PPB_Font_FunctionAPI, |
| 26 public InterfaceProxy { |
| 26 public: | 27 public: |
| 27 PPB_Font_Proxy(Dispatcher* dispatcher); | 28 PPB_Font_Proxy(Dispatcher* dispatcher, const void* target_interface); |
| 28 virtual ~PPB_Font_Proxy(); | 29 virtual ~PPB_Font_Proxy(); |
| 29 | 30 |
| 31 static const Info* GetInfo(); |
| 32 |
| 30 // FunctionGroupBase overrides. | 33 // FunctionGroupBase overrides. |
| 31 virtual ppapi::thunk::PPB_Font_FunctionAPI* AsPPB_Font_FunctionAPI() OVERRIDE; | 34 virtual ppapi::thunk::PPB_Font_FunctionAPI* AsPPB_Font_FunctionAPI() OVERRIDE; |
| 32 | 35 |
| 33 // PPB_Font_FunctionAPI implementation. | 36 // PPB_Font_FunctionAPI implementation. |
| 34 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE; | 37 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE; |
| 35 | 38 |
| 36 // InterfaceProxy implementation. | 39 // InterfaceProxy implementation. |
| 37 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 40 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
| 38 | 41 |
| 39 static const InterfaceID kInterfaceID = INTERFACE_ID_PPB_FONT; | |
| 40 | |
| 41 private: | 42 private: |
| 42 DISALLOW_COPY_AND_ASSIGN(PPB_Font_Proxy); | 43 DISALLOW_COPY_AND_ASSIGN(PPB_Font_Proxy); |
| 43 }; | 44 }; |
| 44 | 45 |
| 45 class Font : public ppapi::Resource, | 46 class Font : public ppapi::Resource, |
| 46 public ppapi::thunk::PPB_Font_API { | 47 public ppapi::thunk::PPB_Font_API { |
| 47 public: | 48 public: |
| 48 // Note that there isn't a "real" resource in the renderer backing a font, | 49 // Note that there isn't a "real" resource in the renderer backing a font, |
| 49 // it lives entirely in the plugin process. So the resource ID in the host | 50 // it lives entirely in the plugin process. So the resource ID in the host |
| 50 // resource should be 0. However, various code assumes the instance in the | 51 // resource should be 0. However, various code assumes the instance in the |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 // destruction). | 88 // destruction). |
| 88 ppapi::WebKitForwarding::Font* font_forwarding_; | 89 ppapi::WebKitForwarding::Font* font_forwarding_; |
| 89 | 90 |
| 90 DISALLOW_COPY_AND_ASSIGN(Font); | 91 DISALLOW_COPY_AND_ASSIGN(Font); |
| 91 }; | 92 }; |
| 92 | 93 |
| 93 } // namespace proxy | 94 } // namespace proxy |
| 94 } // namespace ppapi | 95 } // namespace ppapi |
| 95 | 96 |
| 96 #endif // PPAPI_PROXY_PPB_FONT_PROXY_H_ | 97 #endif // PPAPI_PROXY_PPB_FONT_PROXY_H_ |
| OLD | NEW |