OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HOST_ H_ | |
6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HOST_ H_ | |
7 | |
8 #include "base/compiler_specific.h" | |
9 #include "ppapi/host/resource_host.h" | |
10 #include "ppapi/host/resource_message_filter.h" | |
raymes
2012/12/17 00:08:29
don't think this is is needed
| |
11 | |
12 namespace ppapi { | |
13 namespace host { | |
14 struct ReplyMessageContext; | |
raymes
2012/12/17 00:08:29
not needed (I see that you've just copied this fro
| |
15 } | |
16 } | |
17 | |
18 namespace content { | |
19 | |
20 class BrowserPpapiHost; | |
21 | |
22 class PepperBrowserFontSingletonHost : public ppapi::host::ResourceHost { | |
23 public: | |
24 PepperBrowserFontSingletonHost(BrowserPpapiHost* host, | |
25 PP_Instance instance, | |
26 PP_Resource resource); | |
27 virtual ~PepperBrowserFontSingletonHost(); | |
28 | |
29 private: | |
30 DISALLOW_COPY_AND_ASSIGN(PepperBrowserFontSingletonHost); | |
31 }; | |
32 | |
33 } // namespace content | |
34 | |
35 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HO ST_H_ | |
OLD | NEW |