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

Unified Diff: ui/gl/test/gl_image_test_template.h

Issue 1421903006: ui/gl: Move GLImage into gl namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ozone demo Created 5 years, 2 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 | « ui/gl/gl_surface_ozone.cc ('k') | ui/ozone/demo/surfaceless_gl_renderer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « ui/gl/gl_surface_ozone.cc ('k') | ui/ozone/demo/surfaceless_gl_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698