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_THUNK_ENTER_H_ | 5 #ifndef PPAPI_THUNK_ENTER_H_ |
6 #define PPAPI_THUNK_ENTER_H_ | 6 #define PPAPI_THUNK_ENTER_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 | 11 |
10 #include "base/basictypes.h" | 12 #include "base/macros.h" |
11 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
12 #include "ppapi/c/pp_errors.h" | 14 #include "ppapi/c/pp_errors.h" |
13 #include "ppapi/c/pp_resource.h" | 15 #include "ppapi/c/pp_resource.h" |
14 #include "ppapi/shared_impl/ppapi_globals.h" | 16 #include "ppapi/shared_impl/ppapi_globals.h" |
15 #include "ppapi/shared_impl/proxy_lock.h" | 17 #include "ppapi/shared_impl/proxy_lock.h" |
16 #include "ppapi/shared_impl/resource.h" | 18 #include "ppapi/shared_impl/resource.h" |
17 #include "ppapi/shared_impl/resource_tracker.h" | 19 #include "ppapi/shared_impl/resource_tracker.h" |
18 #include "ppapi/shared_impl/singleton_resource_id.h" | 20 #include "ppapi/shared_impl/singleton_resource_id.h" |
19 #include "ppapi/shared_impl/tracked_callback.h" | 21 #include "ppapi/shared_impl/tracked_callback.h" |
20 #include "ppapi/thunk/ppapi_thunk_export.h" | 22 #include "ppapi/thunk/ppapi_thunk_export.h" |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 ResourceCreationAPI* functions() { return functions_; } | 323 ResourceCreationAPI* functions() { return functions_; } |
322 | 324 |
323 private: | 325 private: |
324 ResourceCreationAPI* functions_; | 326 ResourceCreationAPI* functions_; |
325 }; | 327 }; |
326 | 328 |
327 } // namespace thunk | 329 } // namespace thunk |
328 } // namespace ppapi | 330 } // namespace ppapi |
329 | 331 |
330 #endif // PPAPI_THUNK_ENTER_H_ | 332 #endif // PPAPI_THUNK_ENTER_H_ |
OLD | NEW |