| 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/common/content_switches_internal.h" | 7 #include "content/common/content_switches_internal.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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate( | 280 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate( |
| 281 PP_Instance instance) { | 281 PP_Instance instance) { |
| 282 return 0; // Not supported in-process. | 282 return 0; // Not supported in-process. |
| 283 } | 283 } |
| 284 | 284 |
| 285 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance, | 285 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance, |
| 286 PP_Bool vertical) { | 286 PP_Bool vertical) { |
| 287 return PPB_Scrollbar_Impl::Create(instance, PP_ToBool(vertical)); | 287 return PPB_Scrollbar_Impl::Create(instance, PP_ToBool(vertical)); |
| 288 } | 288 } |
| 289 | 289 |
| 290 PP_Resource ResourceCreationImpl::CreateTalk(PP_Instance /* instance */) { | |
| 291 return 0; // Not supported in-process. | |
| 292 } | |
| 293 | |
| 294 PP_Resource ResourceCreationImpl::CreateTCPServerSocketPrivate( | 290 PP_Resource ResourceCreationImpl::CreateTCPServerSocketPrivate( |
| 295 PP_Instance instance) { | 291 PP_Instance instance) { |
| 296 return 0; // Not supported in-process. | 292 return 0; // Not supported in-process. |
| 297 } | 293 } |
| 298 | 294 |
| 299 PP_Resource ResourceCreationImpl::CreateTCPSocket1_0(PP_Instance instance) { | 295 PP_Resource ResourceCreationImpl::CreateTCPSocket1_0(PP_Instance instance) { |
| 300 return 0; // Not supported in-process. | 296 return 0; // Not supported in-process. |
| 301 } | 297 } |
| 302 | 298 |
| 303 PP_Resource ResourceCreationImpl::CreateTCPSocket(PP_Instance instance) { | 299 PP_Resource ResourceCreationImpl::CreateTCPSocket(PP_Instance instance) { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 wheel_ticks, | 362 wheel_ticks, |
| 367 scroll_by_page); | 363 scroll_by_page); |
| 368 } | 364 } |
| 369 | 365 |
| 370 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( | 366 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( |
| 371 PP_Instance instance) { | 367 PP_Instance instance) { |
| 372 return 0; // Not supported in-process. | 368 return 0; // Not supported in-process. |
| 373 } | 369 } |
| 374 | 370 |
| 375 } // namespace content | 371 } // namespace content |
| OLD | NEW |