| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PPAPI_PROXY_HOST_DISPATCHER_H_ | 5 #ifndef PPAPI_PROXY_HOST_DISPATCHER_H_ |
| 6 #define PPAPI_PROXY_HOST_DISPATCHER_H_ | 6 #define PPAPI_PROXY_HOST_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/process.h" | 12 #include "base/process.h" |
| 13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
| 14 #include "ppapi/c/pp_instance.h" | 14 #include "ppapi/c/pp_instance.h" |
| 15 #include "ppapi/proxy/dispatcher.h" | 15 #include "ppapi/proxy/dispatcher.h" |
| 16 #include "ppapi/proxy/plugin_resource_tracker.h" | |
| 17 #include "ppapi/proxy/plugin_var_tracker.h" | 16 #include "ppapi/proxy/plugin_var_tracker.h" |
| 18 | 17 |
| 19 struct PPB_Var_Deprecated; | 18 struct PPB_Var_Deprecated; |
| 20 | 19 |
| 21 namespace base { | 20 namespace base { |
| 22 class WaitableEvent; | 21 class WaitableEvent; |
| 23 } | 22 } |
| 24 | 23 |
| 25 namespace IPC { | 24 namespace IPC { |
| 26 class SyncChannel; | 25 class SyncChannel; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 57 virtual bool IsPlugin() const; | 56 virtual bool IsPlugin() const; |
| 58 | 57 |
| 59 private: | 58 private: |
| 60 DISALLOW_COPY_AND_ASSIGN(HostDispatcher); | 59 DISALLOW_COPY_AND_ASSIGN(HostDispatcher); |
| 61 }; | 60 }; |
| 62 | 61 |
| 63 } // namespace proxy | 62 } // namespace proxy |
| 64 } // namespace pp | 63 } // namespace pp |
| 65 | 64 |
| 66 #endif // PPAPI_PROXY_HOST_DISPATCHER_H_ | 65 #endif // PPAPI_PROXY_HOST_DISPATCHER_H_ |
| OLD | NEW |