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" | 7 #include "content/renderer/pepper/common.h" |
8 #include "content/renderer/pepper/ppb_audio_impl.h" | 8 #include "content/renderer/pepper/ppb_audio_impl.h" |
9 #include "content/renderer/pepper/ppb_broker_impl.h" | 9 #include "content/renderer/pepper/ppb_broker_impl.h" |
10 #include "content/renderer/pepper/ppb_buffer_impl.h" | 10 #include "content/renderer/pepper/ppb_buffer_impl.h" |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 | 222 |
223 PP_Resource ResourceCreationImpl::CreateTouchInputEvent( | 223 PP_Resource ResourceCreationImpl::CreateTouchInputEvent( |
224 PP_Instance instance, | 224 PP_Instance instance, |
225 PP_InputEvent_Type type, | 225 PP_InputEvent_Type type, |
226 PP_TimeTicks time_stamp, | 226 PP_TimeTicks time_stamp, |
227 uint32_t modifiers) { | 227 uint32_t modifiers) { |
228 return PPB_InputEvent_Shared::CreateTouchInputEvent( | 228 return PPB_InputEvent_Shared::CreateTouchInputEvent( |
229 ppapi::OBJECT_IS_IMPL, instance, type, time_stamp, modifiers); | 229 ppapi::OBJECT_IS_IMPL, instance, type, time_stamp, modifiers); |
230 } | 230 } |
231 | 231 |
232 PP_Resource ResourceCreationImpl::CreateNetworkMonitorPrivate( | 232 PP_Resource ResourceCreationImpl::CreateNetworkMonitor(PP_Instance instance) { |
233 PP_Instance instance) { | |
234 return 0; // Not supported in-process. | 233 return 0; // Not supported in-process. |
235 } | 234 } |
236 | 235 |
237 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate( | 236 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate( |
238 PP_Instance instance) { | 237 PP_Instance instance) { |
239 return 0; // Not supported in-process. | 238 return 0; // Not supported in-process. |
240 } | 239 } |
241 | 240 |
242 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance, | 241 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance, |
243 PP_Bool vertical) { | 242 PP_Bool vertical) { |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers, | 309 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers, |
311 wheel_delta, wheel_ticks, scroll_by_page); | 310 wheel_delta, wheel_ticks, scroll_by_page); |
312 } | 311 } |
313 | 312 |
314 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( | 313 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( |
315 PP_Instance instance) { | 314 PP_Instance instance) { |
316 return 0; // Not supported in-process. | 315 return 0; // Not supported in-process. |
317 } | 316 } |
318 | 317 |
319 } // namespace content | 318 } // namespace content |
OLD | NEW |