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 #include "content/renderer/pepper/resource_creation_impl.h" | 5 #include "content/renderer/pepper/resource_creation_impl.h" |
6 | 6 |
7 #include "content/renderer/pepper/common.h" | |
8 #include "content/renderer/pepper/ppb_audio_impl.h" | 7 #include "content/renderer/pepper/ppb_audio_impl.h" |
9 #include "content/renderer/pepper/ppb_broker_impl.h" | 8 #include "content/renderer/pepper/ppb_broker_impl.h" |
10 #include "content/renderer/pepper/ppb_buffer_impl.h" | 9 #include "content/renderer/pepper/ppb_buffer_impl.h" |
11 #include "content/renderer/pepper/ppb_flash_message_loop_impl.h" | 10 #include "content/renderer/pepper/ppb_flash_message_loop_impl.h" |
12 #include "content/renderer/pepper/ppb_graphics_3d_impl.h" | 11 #include "content/renderer/pepper/ppb_graphics_3d_impl.h" |
13 #include "content/renderer/pepper/ppb_image_data_impl.h" | 12 #include "content/renderer/pepper/ppb_image_data_impl.h" |
14 #include "content/renderer/pepper/ppb_scrollbar_impl.h" | 13 #include "content/renderer/pepper/ppb_scrollbar_impl.h" |
15 #include "content/renderer/pepper/ppb_video_decoder_impl.h" | 14 #include "content/renderer/pepper/ppb_video_decoder_impl.h" |
| 15 #include "ppapi/c/pp_bool.h" |
16 #include "ppapi/c/pp_size.h" | 16 #include "ppapi/c/pp_size.h" |
| 17 #include "ppapi/c/pp_var.h" |
17 #include "ppapi/shared_impl/ppb_audio_config_shared.h" | 18 #include "ppapi/shared_impl/ppb_audio_config_shared.h" |
18 #include "ppapi/shared_impl/ppb_audio_shared.h" | 19 #include "ppapi/shared_impl/ppb_audio_shared.h" |
19 #include "ppapi/shared_impl/ppb_image_data_shared.h" | 20 #include "ppapi/shared_impl/ppb_image_data_shared.h" |
20 #include "ppapi/shared_impl/ppb_input_event_shared.h" | 21 #include "ppapi/shared_impl/ppb_input_event_shared.h" |
21 #include "ppapi/shared_impl/var.h" | 22 #include "ppapi/shared_impl/var.h" |
22 | 23 |
23 using ppapi::InputEventData; | 24 using ppapi::InputEventData; |
24 using ppapi::PPB_InputEvent_Shared; | 25 using ppapi::PPB_InputEvent_Shared; |
25 using ppapi::StringVar; | 26 using ppapi::StringVar; |
26 | 27 |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 wheel_ticks, | 337 wheel_ticks, |
337 scroll_by_page); | 338 scroll_by_page); |
338 } | 339 } |
339 | 340 |
340 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( | 341 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( |
341 PP_Instance instance) { | 342 PP_Instance instance) { |
342 return 0; // Not supported in-process. | 343 return 0; // Not supported in-process. |
343 } | 344 } |
344 | 345 |
345 } // namespace content | 346 } // namespace content |
OLD | NEW |