OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" |
13 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
14 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
15 #include "base/process/process.h" | 16 #include "base/process/process.h" |
16 #include "ipc/message_filter.h" | 17 #include "ipc/message_filter.h" |
17 #include "ppapi/c/pp_instance.h" | 18 #include "ppapi/c/pp_instance.h" |
18 #include "ppapi/proxy/dispatcher.h" | 19 #include "ppapi/proxy/dispatcher.h" |
19 | 20 |
20 struct PPB_Proxy_Private; | 21 struct PPB_Proxy_Private; |
21 | 22 |
22 namespace ppapi { | 23 namespace ppapi { |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 private: | 165 private: |
165 HostDispatcher* dispatcher_; | 166 HostDispatcher* dispatcher_; |
166 | 167 |
167 DISALLOW_COPY_AND_ASSIGN(ScopedModuleReference); | 168 DISALLOW_COPY_AND_ASSIGN(ScopedModuleReference); |
168 }; | 169 }; |
169 | 170 |
170 } // namespace proxy | 171 } // namespace proxy |
171 } // namespace ppapi | 172 } // namespace ppapi |
172 | 173 |
173 #endif // PPAPI_PROXY_HOST_DISPATCHER_H_ | 174 #endif // PPAPI_PROXY_HOST_DISPATCHER_H_ |
OLD | NEW |