Chromium Code Reviews| 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 "webkit/plugins/ppapi/resource_creation_impl.h" | 5 #include "webkit/plugins/ppapi/resource_creation_impl.h" |
| 6 | 6 |
| 7 #include "ppapi/c/pp_size.h" | 7 #include "ppapi/c/pp_size.h" |
| 8 #include "ppapi/shared_impl/ppb_audio_config_shared.h" | 8 #include "ppapi/shared_impl/ppb_audio_config_shared.h" |
| 9 #include "ppapi/shared_impl/private/ppb_browser_font_trusted_shared.h" | 9 #include "ppapi/shared_impl/private/ppb_browser_font_trusted_shared.h" |
| 10 #include "ppapi/shared_impl/ppb_input_event_shared.h" | 10 #include "ppapi/shared_impl/ppb_input_event_shared.h" |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 38 #include "webkit/plugins/ppapi/ppb_video_decoder_impl.h" | 38 #include "webkit/plugins/ppapi/ppb_video_decoder_impl.h" |
| 39 #include "webkit/plugins/ppapi/ppb_video_layer_impl.h" | 39 #include "webkit/plugins/ppapi/ppb_video_layer_impl.h" |
| 40 #include "webkit/plugins/ppapi/ppb_websocket_impl.h" | 40 #include "webkit/plugins/ppapi/ppb_websocket_impl.h" |
| 41 #include "webkit/plugins/ppapi/ppb_x509_certificate_private_impl.h" | 41 #include "webkit/plugins/ppapi/ppb_x509_certificate_private_impl.h" |
| 42 #include "webkit/plugins/ppapi/resource_helper.h" | 42 #include "webkit/plugins/ppapi/resource_helper.h" |
| 43 | 43 |
| 44 using ppapi::InputEventData; | 44 using ppapi::InputEventData; |
| 45 using ppapi::PPB_InputEvent_Shared; | 45 using ppapi::PPB_InputEvent_Shared; |
| 46 using ppapi::PPB_ResourceArray_Shared; | 46 using ppapi::PPB_ResourceArray_Shared; |
| 47 using ppapi::StringVar; | 47 using ppapi::StringVar; |
| 48 using ppapi::thunk::PPB_Graphics3D_API; | |
|
Fady Samuel
2012/05/28 14:11:45
Is this necessary? If not, please get rid of this.
| |
| 48 | 49 |
| 49 namespace webkit { | 50 namespace webkit { |
| 50 namespace ppapi { | 51 namespace ppapi { |
| 51 | 52 |
| 52 ResourceCreationImpl::ResourceCreationImpl(PluginInstance* instance) { | 53 ResourceCreationImpl::ResourceCreationImpl(PluginInstance* instance) { |
| 53 } | 54 } |
| 54 | 55 |
| 55 ResourceCreationImpl::~ResourceCreationImpl() { | 56 ResourceCreationImpl::~ResourceCreationImpl() { |
| 56 } | 57 } |
| 57 | 58 |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 318 wheel_delta, wheel_ticks, scroll_by_page); | 319 wheel_delta, wheel_ticks, scroll_by_page); |
| 319 } | 320 } |
| 320 | 321 |
| 321 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( | 322 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( |
| 322 PP_Instance instance) { | 323 PP_Instance instance) { |
| 323 return PPB_X509Certificate_Private_Impl::CreateResource(instance); | 324 return PPB_X509Certificate_Private_Impl::CreateResource(instance); |
| 324 } | 325 } |
| 325 | 326 |
| 326 } // namespace ppapi | 327 } // namespace ppapi |
| 327 } // namespace webkit | 328 } // namespace webkit |
| OLD | NEW |