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

Unified Diff: Source/WebCore/platform/graphics/chromium/TextureManager.cpp

Issue 7749028: Compositor leaks all resources if tab is closed and it's not the last in the process (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/platform/graphics/chromium/LayerRendererChromium.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/platform/graphics/chromium/TextureManager.cpp
===================================================================
--- Source/WebCore/platform/graphics/chromium/TextureManager.cpp (revision 93831)
+++ Source/WebCore/platform/graphics/chromium/TextureManager.cpp (working copy)
@@ -85,7 +85,6 @@
void TextureManager::protectTexture(TextureToken token)
{
ASSERT(hasTexture(token));
- ASSERT(!m_textures.get(token).isProtected);
enne (OOO) 2011/08/26 22:17:03 Nit: This doesn't seem necessary. Maybe you didn'
TextureInfo info = m_textures.take(token);
info.isProtected = true;
m_textures.add(token, info);
« no previous file with comments | « Source/WebCore/platform/graphics/chromium/LayerRendererChromium.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698