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

Unified Diff: Source/WebCore/platform/graphics/chromium/cc/CCVideoLayerImpl.h

Issue 10690121: Merge 121076 - [chromium] LayerRendererChromium is not getting visibility messages in single thread… (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 5 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: Source/WebCore/platform/graphics/chromium/cc/CCVideoLayerImpl.h
===================================================================
--- Source/WebCore/platform/graphics/chromium/cc/CCVideoLayerImpl.h (revision 122257)
+++ Source/WebCore/platform/graphics/chromium/cc/CCVideoLayerImpl.h (working copy)
@@ -75,8 +75,8 @@
FramePlane() : textureId(0) { }
- bool allocateData(CCRenderer*);
- void freeData(CCRenderer*);
+ bool allocateData(CCGraphicsContext*);
+ void freeData(CCGraphicsContext*);
};
private:
@@ -86,10 +86,10 @@
virtual const char* layerTypeAsString() const OVERRIDE { return "VideoLayer"; }
void willDrawInternal(CCRenderer*, CCGraphicsContext*);
- bool allocatePlaneData(CCRenderer*);
+ bool allocatePlaneData(CCRenderer*, CCGraphicsContext*);
bool copyPlaneData(CCRenderer*, CCGraphicsContext*);
- void freePlaneData(CCRenderer*);
- void freeUnusedPlaneData(CCRenderer*);
+ void freePlaneData(CCGraphicsContext*);
+ void freeUnusedPlaneData(CCGraphicsContext*);
// Guards the destruction of m_provider and the frame that it provides
Mutex m_providerMutex;

Powered by Google App Engine
This is Rietveld 408576698