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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 PP_TimeTicks time_stamp, | 209 PP_TimeTicks time_stamp, |
210 uint32_t modifiers) { | 210 uint32_t modifiers) { |
211 return PPB_InputEvent_Shared::CreateTouchInputEvent( | 211 return PPB_InputEvent_Shared::CreateTouchInputEvent( |
212 ppapi::OBJECT_IS_IMPL, instance, type, time_stamp, modifiers); | 212 ppapi::OBJECT_IS_IMPL, instance, type, time_stamp, modifiers); |
213 } | 213 } |
214 | 214 |
215 PP_Resource ResourceCreationImpl::CreateNetworkMonitor(PP_Instance instance) { | 215 PP_Resource ResourceCreationImpl::CreateNetworkMonitor(PP_Instance instance) { |
216 return 0; // Not supported in-process. | 216 return 0; // Not supported in-process. |
217 } | 217 } |
218 | 218 |
| 219 PP_Resource ResourceCreationImpl::CreateOutputProtectionPrivate( |
| 220 PP_Instance instance) { |
| 221 return 0; // Not supported in-process. |
| 222 } |
| 223 |
219 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate( | 224 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate( |
220 PP_Instance instance) { | 225 PP_Instance instance) { |
221 return 0; // Not supported in-process. | 226 return 0; // Not supported in-process. |
222 } | 227 } |
223 | 228 |
224 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance, | 229 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance, |
225 PP_Bool vertical) { | 230 PP_Bool vertical) { |
226 return PPB_Scrollbar_Impl::Create(instance, PP_ToBool(vertical)); | 231 return PPB_Scrollbar_Impl::Create(instance, PP_ToBool(vertical)); |
227 } | 232 } |
228 | 233 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers, | 301 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers, |
297 wheel_delta, wheel_ticks, scroll_by_page); | 302 wheel_delta, wheel_ticks, scroll_by_page); |
298 } | 303 } |
299 | 304 |
300 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( | 305 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( |
301 PP_Instance instance) { | 306 PP_Instance instance) { |
302 return 0; // Not supported in-process. | 307 return 0; // Not supported in-process. |
303 } | 308 } |
304 | 309 |
305 } // namespace content | 310 } // namespace content |
OLD | NEW |