Index: cc/layer_tree_host.cc |
diff --git a/cc/layer_tree_host.cc b/cc/layer_tree_host.cc |
index 07d25919130c69184427d5f9e1bdf6d492fe05f6..0e0f2d37ddc068a6f04218b5c6edd9f877496c6e 100644 |
--- a/cc/layer_tree_host.cc |
+++ b/cc/layer_tree_host.cc |
@@ -163,7 +163,7 @@ void LayerTreeHost::initializeRenderer() |
// Update m_settings based on partial update capability. |
m_settings.maxPartialTextureUpdates = min(m_settings.maxPartialTextureUpdates, m_proxy->maxPartialTextureUpdates()); |
- m_contentsTextureManager = PrioritizedTextureManager::create(0, m_proxy->rendererCapabilities().maxTextureSize, Renderer::ContentPool); |
+ m_contentsTextureManager = PrioritizedResourceManager::create(0, m_proxy->rendererCapabilities().maxTextureSize, Renderer::ContentPool); |
m_surfaceMemoryPlaceholder = m_contentsTextureManager->createTexture(gfx::Size(), GL_RGBA); |
m_rendererInitialized = true; |
@@ -470,7 +470,7 @@ void LayerTreeHost::loseContext(int numTimes) |
m_proxy->loseContext(); |
} |
-PrioritizedTextureManager* LayerTreeHost::contentsTextureManager() const |
+PrioritizedResourceManager* LayerTreeHost::contentsTextureManager() const |
{ |
return m_contentsTextureManager.get(); |
} |