| Index: ppapi/proxy/plugin_main_nacl.cc
|
| diff --git a/ppapi/proxy/plugin_main_nacl.cc b/ppapi/proxy/plugin_main_nacl.cc
|
| index f00d371bfa7a24bd5ebafda4fb956d07b2ca129b..5978233a5376601cb8171f985284d870258e617d 100644
|
| --- a/ppapi/proxy/plugin_main_nacl.cc
|
| +++ b/ppapi/proxy/plugin_main_nacl.cc
|
| @@ -78,6 +78,11 @@ class PpapiDispatcher : public ProxyChannel,
|
| virtual std::string GetUILanguage() OVERRIDE;
|
| virtual void PreCacheFont(const void* logfontw) OVERRIDE;
|
| virtual void SetActiveURL(const std::string& url) OVERRIDE;
|
| + virtual PP_Resource CreateBrowserFont(
|
| + ppapi::proxy::Connection connection,
|
| + PP_Instance instance,
|
| + const PP_BrowserFont_Trusted_Description& desc,
|
| + const ppapi::Preferences& prefs) OVERRIDE;
|
|
|
| // IPC::Listener implementation.
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| @@ -169,6 +174,15 @@ void PpapiDispatcher::SetActiveURL(const std::string& url) {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| +PP_Resource PpapiDispatcher::CreateBrowserFont(
|
| + ppapi::proxy::Connection connection,
|
| + PP_Instance instance,
|
| + const PP_BrowserFont_Trusted_Description& desc,
|
| + const ppapi::Preferences& prefs) {
|
| + NOTIMPLEMENTED();
|
| + return 0;
|
| +}
|
| +
|
| bool PpapiDispatcher::OnMessageReceived(const IPC::Message& msg) {
|
| IPC_BEGIN_MESSAGE_MAP(PpapiDispatcher, msg)
|
| IPC_MESSAGE_HANDLER(PpapiMsg_CreateNaClChannel, OnMsgCreateNaClChannel)
|
|
|