OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ppapi/shared_impl/webkit_forwarding.h" |
| 6 |
| 7 #include "base/compiler_specific.h" |
| 8 |
| 9 namespace webkit { |
| 10 namespace ppapi { |
| 11 |
| 12 class 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 |
OLD | NEW |