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" | 10 #include "ppapi/c/dev/ppb_text_input_dev.h" |
11 #include "ppapi/c/dev/ppb_url_util_dev.h" | 11 #include "ppapi/c/dev/ppb_url_util_dev.h" |
12 #include "ppapi/c/pp_bool.h" | 12 #include "ppapi/c/pp_bool.h" |
13 #include "ppapi/c/pp_completion_callback.h" | 13 #include "ppapi/c/pp_completion_callback.h" |
14 #include "ppapi/c/pp_size.h" | 14 #include "ppapi/c/pp_size.h" |
15 #include "ppapi/c/ppb_audio_config.h" | 15 #include "ppapi/c/ppb_audio_config.h" |
16 #include "ppapi/c/ppb_console.h" | 16 #include "ppapi/c/ppb_console.h" |
17 #include "ppapi/c/ppb_gamepad.h" | 17 #include "ppapi/c/ppb_gamepad.h" |
18 #include "ppapi/c/ppb_instance.h" | 18 #include "ppapi/c/ppb_instance.h" |
19 #include "ppapi/c/ppb_mouse_cursor.h" | 19 #include "ppapi/c/ppb_mouse_cursor.h" |
20 #include "ppapi/c/ppb_text_input_controller.h" | |
yzshen1
2013/07/23 16:48:20
nit: I think this is not needed.
Seigo Nonaka
2013/07/24 09:05:37
Yes! removed.
| |
20 #include "ppapi/c/private/pp_content_decryptor.h" | 21 #include "ppapi/c/private/pp_content_decryptor.h" |
21 #include "ppapi/c/private/ppb_instance_private.h" | 22 #include "ppapi/c/private/ppb_instance_private.h" |
22 #include "ppapi/shared_impl/api_id.h" | 23 #include "ppapi/shared_impl/api_id.h" |
23 #include "ppapi/shared_impl/resource.h" | 24 #include "ppapi/shared_impl/resource.h" |
24 #include "ppapi/shared_impl/singleton_resource_id.h" | 25 #include "ppapi/shared_impl/singleton_resource_id.h" |
25 | 26 |
26 // Windows headers interfere with this file. | 27 // Windows headers interfere with this file. |
27 #ifdef PostMessage | 28 #ifdef PostMessage |
28 #undef PostMessage | 29 #undef PostMessage |
29 #endif | 30 #endif |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
191 PP_URLComponents_Dev* components) = 0; | 192 PP_URLComponents_Dev* components) = 0; |
192 #endif // !defined(OS_NACL) | 193 #endif // !defined(OS_NACL) |
193 | 194 |
194 static const ApiID kApiID = API_ID_PPB_INSTANCE; | 195 static const ApiID kApiID = API_ID_PPB_INSTANCE; |
195 }; | 196 }; |
196 | 197 |
197 } // namespace thunk | 198 } // namespace thunk |
198 } // namespace ppapi | 199 } // namespace ppapi |
199 | 200 |
200 #endif // PPAPI_THUNK_INSTANCE_API_H_ | 201 #endif // PPAPI_THUNK_INSTANCE_API_H_ |
OLD | NEW |