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_ENTER_PROXY_H_ | 5 #ifndef PPAPI_PROXY_ENTER_PROXY_H_ |
6 #define PPAPI_PROXY_ENTER_PROXY_H_ | 6 #define PPAPI_PROXY_ENTER_PROXY_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include "base/logging.h" | 10 #include "base/logging.h" |
9 #include "ppapi/cpp/completion_callback.h" | 11 #include "ppapi/cpp/completion_callback.h" |
10 #include "ppapi/proxy/host_dispatcher.h" | 12 #include "ppapi/proxy/host_dispatcher.h" |
11 #include "ppapi/proxy/plugin_dispatcher.h" | 13 #include "ppapi/proxy/plugin_dispatcher.h" |
12 #include "ppapi/proxy/plugin_globals.h" | 14 #include "ppapi/proxy/plugin_globals.h" |
13 #include "ppapi/proxy/plugin_resource_tracker.h" | 15 #include "ppapi/proxy/plugin_resource_tracker.h" |
14 #include "ppapi/thunk/enter.h" | 16 #include "ppapi/thunk/enter.h" |
15 | 17 |
16 namespace ppapi { | 18 namespace ppapi { |
17 | 19 |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 this->ClearCallback(); | 197 this->ClearCallback(); |
196 } | 198 } |
197 | 199 |
198 bool needs_running_; | 200 bool needs_running_; |
199 }; | 201 }; |
200 | 202 |
201 } // namespace proxy | 203 } // namespace proxy |
202 } // namespace ppapi | 204 } // namespace ppapi |
203 | 205 |
204 #endif // PPAPI_PROXY_ENTER_PROXY_H_ | 206 #endif // PPAPI_PROXY_ENTER_PROXY_H_ |
OLD | NEW |