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_INSTANCE_API_H_ | 5 #ifndef PPAPI_THUNK_INSTANCE_API_H_ |
6 #define PPAPI_THUNK_INSTANCE_API_H_ | 6 #define PPAPI_THUNK_INSTANCE_API_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | |
12 #include "build/build_config.h" | 11 #include "build/build_config.h" |
13 #include "ppapi/c/dev/ppb_url_util_dev.h" | 12 #include "ppapi/c/dev/ppb_url_util_dev.h" |
14 #include "ppapi/c/pp_bool.h" | 13 #include "ppapi/c/pp_bool.h" |
15 #include "ppapi/c/pp_completion_callback.h" | 14 #include "ppapi/c/pp_completion_callback.h" |
16 #include "ppapi/c/pp_size.h" | 15 #include "ppapi/c/pp_size.h" |
17 #include "ppapi/c/pp_time.h" | 16 #include "ppapi/c/pp_time.h" |
18 #include "ppapi/c/ppb_audio_config.h" | 17 #include "ppapi/c/ppb_audio_config.h" |
19 #include "ppapi/c/ppb_console.h" | 18 #include "ppapi/c/ppb_console.h" |
20 #include "ppapi/c/ppb_gamepad.h" | 19 #include "ppapi/c/ppb_gamepad.h" |
21 #include "ppapi/c/ppb_instance.h" | 20 #include "ppapi/c/ppb_instance.h" |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 PP_URLComponents_Dev* components) = 0; | 213 PP_URLComponents_Dev* components) = 0; |
215 #endif // !defined(OS_NACL) | 214 #endif // !defined(OS_NACL) |
216 | 215 |
217 static const ApiID kApiID = API_ID_PPB_INSTANCE; | 216 static const ApiID kApiID = API_ID_PPB_INSTANCE; |
218 }; | 217 }; |
219 | 218 |
220 } // namespace thunk | 219 } // namespace thunk |
221 } // namespace ppapi | 220 } // namespace ppapi |
222 | 221 |
223 #endif // PPAPI_THUNK_INSTANCE_API_H_ | 222 #endif // PPAPI_THUNK_INSTANCE_API_H_ |
OLD | NEW |