blob: b12c22e7c035530f6041194a83601a6815eb8ac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ppapi/proxy/ppb_font_proxy.h"
#include "ppapi/c/dev/ppb_font_dev.h"
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/plugin_globals.h"
#include "ppapi/proxy/plugin_proxy_delegate.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/shared_impl/var.h"
using ppapi::thunk::PPB_Font_FunctionAPI;
namespace ppapi {
namespace proxy {
PPB_Font_Proxy::PPB_Font_Proxy(Dispatcher* dispatcher)
: InterfaceProxy(dispatcher) {
}
PPB_Font_Proxy::~PPB_Font_Proxy() {
}
PPB_Font_FunctionAPI* PPB_Font_Proxy::AsPPB_Font_FunctionAPI() {
return this;
}
// TODO(ananta)
// This needs to be wired up to the PPAPI plugin code.
PP_Var PPB_Font_Proxy::GetFontFamilies(PP_Instance instance) {
PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance);
if (!dispatcher)
return PP_MakeUndefined();
// Assume the font families don't change, so we can cache the result globally.
CR_DEFINE_STATIC_LOCAL(std::string, families, ());
if (families.empty()) {
PluginGlobals::Get()->plugin_proxy_delegate()->SendToBrowser(
new PpapiHostMsg_PPBFont_GetFontFamilies(&families));
}
return StringVar::StringToPPVar(families);
}
bool PPB_Font_Proxy::OnMessageReceived(const IPC::Message& msg) {
// There aren't any font messages.
NOTREACHED();
return false;
}
} // namespace proxy
} // namespace ppapi
|