OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/renderer/media/android/stream_texture_factory_android_synchron
ous_impl.h" |
| 6 |
| 7 namespace content { |
| 8 |
| 9 StreamTextureFactorySynchronousImpl::StreamTextureFactorySynchronousImpl() {} |
| 10 StreamTextureFactorySynchronousImpl::~StreamTextureFactorySynchronousImpl() {} |
| 11 |
| 12 StreamTextureProxy* StreamTextureFactorySynchronousImpl::CreateProxy() { |
| 13 return NULL; |
| 14 } |
| 15 |
| 16 void StreamTextureFactorySynchronousImpl::EstablishPeer(int32 stream_id, |
| 17 int player_id) {} |
| 18 |
| 19 unsigned StreamTextureFactorySynchronousImpl::CreateStreamTexture( |
| 20 unsigned texture_target, |
| 21 unsigned* texture_id, |
| 22 gpu::Mailbox* texture_mailbox, |
| 23 unsigned* texture_mailbox_sync_point) { |
| 24 return 0; |
| 25 } |
| 26 |
| 27 void StreamTextureFactorySynchronousImpl::DestroyStreamTexture( |
| 28 unsigned texture_id) {} |
| 29 |
| 30 void StreamTextureFactorySynchronousImpl::SetStreamTextureSize( |
| 31 int32 texture_id, |
| 32 const gfx::Size& size) {} |
| 33 |
| 34 } // namespace content |
OLD | NEW |