Chromium Code Reviews| Index: ui/gl/test/gl_image_test_template.h |
| diff --git a/ui/gl/test/gl_image_test_template.h b/ui/gl/test/gl_image_test_template.h |
| index 9bee385a9f87db5de8211d5562b3993701420e6a..fc09d428bc7b0f5fbd79e0b866c06a068ed05ece 100644 |
| --- a/ui/gl/test/gl_image_test_template.h |
| +++ b/ui/gl/test/gl_image_test_template.h |
| @@ -58,13 +58,13 @@ TYPED_TEST_P(GLImageTest, CreateAndDestroy) { |
| // Create a small solid color green image of preferred format. This must |
| // succeed in order for a GLImage to be conformant. |
| - scoped_refptr<GLImage> small_image = |
| + scoped_refptr<gl::GLImage> small_image = |
|
reveman
2015/10/29 19:46:42
All these tests classes will be moved to gl namesp
tfarina
2015/10/29 20:52:05
Correct.
|
| this->delegate_.CreateSolidColorImage(small_image_size, image_color); |
| ASSERT_TRUE(small_image); |
| // Create a large solid color green image of preferred format. This must |
| // succeed in order for a GLImage to be conformant. |
| - scoped_refptr<GLImage> large_image = |
| + scoped_refptr<gl::GLImage> large_image = |
| this->delegate_.CreateSolidColorImage(large_image_size, image_color); |
| ASSERT_TRUE(large_image); |
| @@ -100,7 +100,7 @@ TYPED_TEST_P(GLImageCopyTest, CopyTexImage) { |
| // Create a solid color green image of preferred format. This must succeed |
| // in order for a GLImage to be conformant. |
| - scoped_refptr<GLImage> image = |
| + scoped_refptr<gl::GLImage> image = |
| this->delegate_.CreateSolidColorImage(image_size, image_color); |
| ASSERT_TRUE(image); |