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

Side by Side Diff: content/renderer/media/android/stream_texture_factory_impl.h

Issue 532993002: work-in-progress patch to fix context lost black video (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: check client Created 6 years, 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_
6 #define CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_ 6 #define CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_
7 7
8 #include "content/renderer/media/android/stream_texture_factory.h" 8 #include "content/renderer/media/android/stream_texture_factory.h"
9 9
10 namespace cc { 10 namespace cc {
(...skipping 19 matching lines...) Expand all
30 30
31 // StreamTextureFactory implementation. 31 // StreamTextureFactory implementation.
32 virtual StreamTextureProxy* CreateProxy() OVERRIDE; 32 virtual StreamTextureProxy* CreateProxy() OVERRIDE;
33 virtual void EstablishPeer(int32 stream_id, int player_id) OVERRIDE; 33 virtual void EstablishPeer(int32 stream_id, int player_id) OVERRIDE;
34 virtual unsigned CreateStreamTexture(unsigned texture_target, 34 virtual unsigned CreateStreamTexture(unsigned texture_target,
35 unsigned* texture_id, 35 unsigned* texture_id,
36 gpu::Mailbox* texture_mailbox) OVERRIDE; 36 gpu::Mailbox* texture_mailbox) OVERRIDE;
37 virtual void SetStreamTextureSize(int32 texture_id, 37 virtual void SetStreamTextureSize(int32 texture_id,
38 const gfx::Size& size) OVERRIDE; 38 const gfx::Size& size) OVERRIDE;
39 virtual gpu::gles2::GLES2Interface* ContextGL() OVERRIDE; 39 virtual gpu::gles2::GLES2Interface* ContextGL() OVERRIDE;
40 virtual void AddObserver(StreamTextureFactoryContextObserver* obs) OVERRIDE;
41 virtual void RemoveObserver(
42 StreamTextureFactoryContextObserver* obs) OVERRIDE;
40 43
41 private: 44 private:
42 friend class base::RefCounted<StreamTextureFactoryImpl>; 45 friend class base::RefCounted<StreamTextureFactoryImpl>;
43 StreamTextureFactoryImpl( 46 StreamTextureFactoryImpl(
44 const scoped_refptr<cc::ContextProvider>& context_provider, 47 const scoped_refptr<cc::ContextProvider>& context_provider,
45 GpuChannelHost* channel, 48 GpuChannelHost* channel,
46 int frame_id); 49 int frame_id);
47 virtual ~StreamTextureFactoryImpl(); 50 virtual ~StreamTextureFactoryImpl();
48 51
49 scoped_refptr<cc::ContextProvider> context_provider_; 52 scoped_refptr<cc::ContextProvider> context_provider_;
50 scoped_refptr<GpuChannelHost> channel_; 53 scoped_refptr<GpuChannelHost> channel_;
51 int frame_id_; 54 int frame_id_;
52 55
53 DISALLOW_IMPLICIT_CONSTRUCTORS(StreamTextureFactoryImpl); 56 DISALLOW_IMPLICIT_CONSTRUCTORS(StreamTextureFactoryImpl);
54 }; 57 };
55 58
56 } // namespace content 59 } // namespace content
57 60
58 #endif // CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_ 61 #endif // CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698