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 "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "ppapi/c/dev/ppb_text_input_dev.h" | |
11 #include "ppapi/c/dev/ppb_url_util_dev.h" | 10 #include "ppapi/c/dev/ppb_url_util_dev.h" |
12 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
13 #include "ppapi/c/pp_completion_callback.h" | 12 #include "ppapi/c/pp_completion_callback.h" |
14 #include "ppapi/c/pp_size.h" | 13 #include "ppapi/c/pp_size.h" |
15 #include "ppapi/c/ppb_audio_config.h" | 14 #include "ppapi/c/ppb_audio_config.h" |
16 #include "ppapi/c/ppb_console.h" | 15 #include "ppapi/c/ppb_console.h" |
17 #include "ppapi/c/ppb_gamepad.h" | 16 #include "ppapi/c/ppb_gamepad.h" |
18 #include "ppapi/c/ppb_instance.h" | 17 #include "ppapi/c/ppb_instance.h" |
19 #include "ppapi/c/ppb_mouse_cursor.h" | 18 #include "ppapi/c/ppb_mouse_cursor.h" |
| 19 #include "ppapi/c/ppb_text_input.h" |
20 #include "ppapi/c/private/pp_content_decryptor.h" | 20 #include "ppapi/c/private/pp_content_decryptor.h" |
21 #include "ppapi/c/private/ppb_instance_private.h" | 21 #include "ppapi/c/private/ppb_instance_private.h" |
22 #include "ppapi/shared_impl/api_id.h" | 22 #include "ppapi/shared_impl/api_id.h" |
23 #include "ppapi/shared_impl/resource.h" | 23 #include "ppapi/shared_impl/resource.h" |
24 #include "ppapi/shared_impl/singleton_resource_id.h" | 24 #include "ppapi/shared_impl/singleton_resource_id.h" |
25 | 25 |
26 // Windows headers interfere with this file. | 26 // Windows headers interfere with this file. |
27 #ifdef PostMessage | 27 #ifdef PostMessage |
28 #undef PostMessage | 28 #undef PostMessage |
29 #endif | 29 #endif |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 PP_URLComponents_Dev* components) = 0; | 191 PP_URLComponents_Dev* components) = 0; |
192 #endif // !defined(OS_NACL) | 192 #endif // !defined(OS_NACL) |
193 | 193 |
194 static const ApiID kApiID = API_ID_PPB_INSTANCE; | 194 static const ApiID kApiID = API_ID_PPB_INSTANCE; |
195 }; | 195 }; |
196 | 196 |
197 } // namespace thunk | 197 } // namespace thunk |
198 } // namespace ppapi | 198 } // namespace ppapi |
199 | 199 |
200 #endif // PPAPI_THUNK_INSTANCE_API_H_ | 200 #endif // PPAPI_THUNK_INSTANCE_API_H_ |
OLD | NEW |