diff options
Diffstat (limited to 'cc/layer_tree_host_unittest.cc')
-rw-r--r-- | cc/layer_tree_host_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/layer_tree_host_unittest.cc b/cc/layer_tree_host_unittest.cc index 1b414a1..5d85f1c 100644 --- a/cc/layer_tree_host_unittest.cc +++ b/cc/layer_tree_host_unittest.cc @@ -2637,12 +2637,12 @@ private: { if (m_texture.get()) return; - m_texture = PrioritizedTexture::create(layerTreeHost()->contentsTextureManager()); + m_texture = PrioritizedResource::create(layerTreeHost()->contentsTextureManager()); m_texture->setDimensions(gfx::Size(10, 10), GL_RGBA); m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, 10, 10); } - scoped_ptr<PrioritizedTexture> m_texture; + scoped_ptr<PrioritizedResource> m_texture; SkBitmap m_bitmap; }; |