blob: 39144957e34a67c72cd4243c83441c0254102b53 [file] [log] [blame]
[email protected]7a1f7c6f2011-05-10 21:17:481// 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
3// found in the LICENSE file.
4
5#include "ppapi/shared_impl/webkit_forwarding.h"
6
7#include "base/compiler_specific.h"
8
9namespace webkit {
10namespace ppapi {
11
12class WebKitForwardingImpl : public pp::shared_impl::WebKitForwarding {
13 public:
14 WebKitForwardingImpl();
15 virtual ~WebKitForwardingImpl();
16
17 virtual void CreateFontForwarding(base::WaitableEvent* event,
18 const PP_FontDescription_Dev& desc,
19 const std::string& desc_face,
20 Font** result) OVERRIDE;
21};
22
23} // namespace ppapi
24} // namespace webkit