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 <memory> | |
bbudge
2016/04/06 21:01:21
Is this needed here?
dcheng
2016/04/06 21:18:33
Done.
| |
11 | |
10 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | |
12 #include "build/build_config.h" | 13 #include "build/build_config.h" |
13 #include "ppapi/c/dev/ppb_url_util_dev.h" | 14 #include "ppapi/c/dev/ppb_url_util_dev.h" |
14 #include "ppapi/c/pp_bool.h" | 15 #include "ppapi/c/pp_bool.h" |
15 #include "ppapi/c/pp_completion_callback.h" | 16 #include "ppapi/c/pp_completion_callback.h" |
16 #include "ppapi/c/pp_size.h" | 17 #include "ppapi/c/pp_size.h" |
17 #include "ppapi/c/pp_time.h" | 18 #include "ppapi/c/pp_time.h" |
18 #include "ppapi/c/ppb_audio_config.h" | 19 #include "ppapi/c/ppb_audio_config.h" |
19 #include "ppapi/c/ppb_console.h" | 20 #include "ppapi/c/ppb_console.h" |
20 #include "ppapi/c/ppb_gamepad.h" | 21 #include "ppapi/c/ppb_gamepad.h" |
21 #include "ppapi/c/ppb_instance.h" | 22 #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; | 215 PP_URLComponents_Dev* components) = 0; |
215 #endif // !defined(OS_NACL) | 216 #endif // !defined(OS_NACL) |
216 | 217 |
217 static const ApiID kApiID = API_ID_PPB_INSTANCE; | 218 static const ApiID kApiID = API_ID_PPB_INSTANCE; |
218 }; | 219 }; |
219 | 220 |
220 } // namespace thunk | 221 } // namespace thunk |
221 } // namespace ppapi | 222 } // namespace ppapi |
222 | 223 |
223 #endif // PPAPI_THUNK_INSTANCE_API_H_ | 224 #endif // PPAPI_THUNK_INSTANCE_API_H_ |
OLD | NEW |