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 #include "ppapi/proxy/ppb_flash_proxy.h" | |
6 | |
7 #include <limits> | |
8 | |
9 #include "base/logging.h" | |
10 #include "base/message_loop.h" | |
11 #include "build/build_config.h" | |
12 #include "ppapi/c/dev/ppb_var_deprecated.h" | |
13 #include "ppapi/c/pp_errors.h" | |
14 #include "ppapi/c/pp_resource.h" | |
15 #include "ppapi/c/private/ppb_flash.h" | |
16 #include "ppapi/c/private/ppb_flash_print.h" | |
17 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" | |
18 #include "ppapi/proxy/host_dispatcher.h" | |
19 #include "ppapi/proxy/plugin_dispatcher.h" | |
20 #include "ppapi/proxy/plugin_globals.h" | |
21 #include "ppapi/proxy/ppapi_messages.h" | |
22 #include "ppapi/proxy/proxy_module.h" | |
23 #include "ppapi/proxy/serialized_var.h" | |
24 #include "ppapi/shared_impl/ppapi_globals.h" | |
25 #include "ppapi/shared_impl/proxy_lock.h" | |
26 #include "ppapi/shared_impl/resource.h" | |
27 #include "ppapi/shared_impl/resource_tracker.h" | |
28 #include "ppapi/shared_impl/scoped_pp_resource.h" | |
29 #include "ppapi/shared_impl/var.h" | |
30 #include "ppapi/shared_impl/var_tracker.h" | |
31 #include "ppapi/thunk/enter.h" | |
32 #include "ppapi/thunk/ppb_instance_api.h" | |
33 #include "ppapi/thunk/ppb_url_request_info_api.h" | |
34 #include "ppapi/thunk/resource_creation_api.h" | |
35 | |
36 using ppapi::thunk::EnterInstanceNoLock; | |
37 using ppapi::thunk::EnterResourceNoLock; | |
38 | |
39 namespace ppapi { | |
40 namespace proxy { | |
41 | |
42 PPB_Flash_Proxy::PPB_Flash_Proxy(Dispatcher* dispatcher) | |
43 : InterfaceProxy(dispatcher) { | |
44 } | |
45 | |
46 PPB_Flash_Proxy::~PPB_Flash_Proxy() { | |
47 } | |
48 | |
49 bool PPB_Flash_Proxy::OnMessageReceived(const IPC::Message& msg) { | |
50 return false; | |
51 } | |
52 | |
53 } // namespace proxy | |
54 } // namespace ppapi | |
OLD | NEW |