Index: cc/scoped_texture_unittest.cc |
diff --git a/cc/scoped_texture_unittest.cc b/cc/scoped_texture_unittest.cc |
index 29e5bb4977cee346402e540b5e5b1b3bfac82ee7..232ec8301154a288126943e8dad2b75b95609064 100644 |
--- a/cc/scoped_texture_unittest.cc |
+++ b/cc/scoped_texture_unittest.cc |
@@ -7,7 +7,6 @@ |
#include "cc/scoped_texture.h" |
#include "cc/renderer.h" |
-#include "cc/single_thread_proxy.h" // For DebugScopedSetImplThread |
#include "cc/test/fake_graphics_context.h" |
#include "cc/test/tiled_layer_test_common.h" |
#include "testing/gtest/include/gtest/gtest.h" |
@@ -22,7 +21,6 @@ namespace { |
TEST(ScopedTextureTest, NewScopedTexture) |
{ |
scoped_ptr<GraphicsContext> context(createFakeGraphicsContext()); |
- DebugScopedSetImplThread implThread; |
scoped_ptr<ResourceProvider> resourceProvider(ResourceProvider::create(context.get())); |
scoped_ptr<ScopedTexture> texture = ScopedTexture::create(resourceProvider.get()); |
@@ -37,7 +35,6 @@ TEST(ScopedTextureTest, NewScopedTexture) |
TEST(ScopedTextureTest, CreateScopedTexture) |
{ |
scoped_ptr<GraphicsContext> context(createFakeGraphicsContext()); |
- DebugScopedSetImplThread implThread; |
scoped_ptr<ResourceProvider> resourceProvider(ResourceProvider::create(context.get())); |
scoped_ptr<ScopedTexture> texture = ScopedTexture::create(resourceProvider.get()); |
texture->allocate(Renderer::ImplPool, gfx::Size(30, 30), GL_RGBA, ResourceProvider::TextureUsageAny); |
@@ -54,7 +51,6 @@ TEST(ScopedTextureTest, CreateScopedTexture) |
TEST(ScopedTextureTest, ScopedTextureIsDeleted) |
{ |
scoped_ptr<GraphicsContext> context(createFakeGraphicsContext()); |
- DebugScopedSetImplThread implThread; |
scoped_ptr<ResourceProvider> resourceProvider(ResourceProvider::create(context.get())); |
{ |
@@ -82,7 +78,6 @@ TEST(ScopedTextureTest, ScopedTextureIsDeleted) |
TEST(ScopedTextureTest, LeakScopedTexture) |
{ |
scoped_ptr<GraphicsContext> context(createFakeGraphicsContext()); |
- DebugScopedSetImplThread implThread; |
scoped_ptr<ResourceProvider> resourceProvider(ResourceProvider::create(context.get())); |
{ |