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

Unified Diff: content/renderer/media/android/stream_texture_factory_impl.h

Issue 278353003: Make RendererMediaPlayerManager a RenderFrameObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor fix. Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/android/stream_texture_factory_impl.h
diff --git a/content/renderer/media/android/stream_texture_factory_impl.h b/content/renderer/media/android/stream_texture_factory_impl.h
index bebec8ccb7905b152675929a2b13502b17b11176..7721c4812ee84c03f336286be459e5e0a898baa0 100644
--- a/content/renderer/media/android/stream_texture_factory_impl.h
+++ b/content/renderer/media/android/stream_texture_factory_impl.h
@@ -26,7 +26,7 @@ class StreamTextureFactoryImpl : public StreamTextureFactory {
static scoped_refptr<StreamTextureFactoryImpl> Create(
const scoped_refptr<cc::ContextProvider>& context_provider,
GpuChannelHost* channel,
- int view_id);
+ int frame_id);
// StreamTextureFactory implementation.
virtual StreamTextureProxy* CreateProxy() OVERRIDE;
@@ -43,12 +43,12 @@ class StreamTextureFactoryImpl : public StreamTextureFactory {
StreamTextureFactoryImpl(
const scoped_refptr<cc::ContextProvider>& context_provider,
GpuChannelHost* channel,
- int view_id);
+ int frame_id);
virtual ~StreamTextureFactoryImpl();
scoped_refptr<cc::ContextProvider> context_provider_;
scoped_refptr<GpuChannelHost> channel_;
- int view_id_;
+ int frame_id_;
DISALLOW_IMPLICIT_CONSTRUCTORS(StreamTextureFactoryImpl);
};

Powered by Google App Engine
This is Rietveld 408576698