Index: Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostImpl.h |
=================================================================== |
--- Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostImpl.h (revision 125598) |
+++ Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostImpl.h (working copy) |
@@ -145,7 +145,8 @@ |
int sourceFrameNumber() const { return m_sourceFrameNumber; } |
void setSourceFrameNumber(int frameNumber) { m_sourceFrameNumber = frameNumber; } |
- bool contentsTexturesWerePurgedSinceLastCommit() const { return m_contentsTexturesWerePurgedSinceLastCommit; } |
+ bool contentsTexturesPurged() const { return m_contentsTexturesPurged; } |
+ void resetContentsTexturesPurged() { m_contentsTexturesPurged = false; } |
size_t memoryAllocationLimitBytes() const { return m_memoryAllocationLimitBytes; } |
void setViewportSize(const IntSize& layoutViewportSize, const IntSize& deviceViewportSize); |
@@ -265,7 +266,7 @@ |
IntSize m_deviceViewportSize; |
float m_deviceScaleFactor; |
bool m_visible; |
- bool m_contentsTexturesWerePurgedSinceLastCommit; |
+ bool m_contentsTexturesPurged; |
size_t m_memoryAllocationLimitBytes; |
float m_pageScale; |