Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Side by Side Diff: content/renderer/media/android/stream_texture_factory_android_synchronous_impl.cc

Issue 22766004: Fullscreen video in Android WebView (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address nits Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW
« no previous file with comments | « content/renderer/media/android/stream_texture_factory_android_synchronous_impl.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698