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

Unified Diff: ui/gl/gl_image_ozone_native_pixmap_unittest.cc

Issue 2014223002: Follow-up fixes to changing namespace gfx to gl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 7 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_image_ozone_native_pixmap.cc ('k') | ui/gl/gl_image_ref_counted_memory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_image_ozone_native_pixmap_unittest.cc
diff --git a/ui/gl/gl_image_ozone_native_pixmap_unittest.cc b/ui/gl/gl_image_ozone_native_pixmap_unittest.cc
index 4e54674331bcf6aaa59d6f8894e7edef1f65ea79..a0d14789ce8e2c8b7dfefa855c6b4bf7a75a5cf9 100644
--- a/ui/gl/gl_image_ozone_native_pixmap_unittest.cc
+++ b/ui/gl/gl_image_ozone_native_pixmap_unittest.cc
@@ -22,9 +22,8 @@ class GLImageOzoneNativePixmapTestDelegate {
GLImageOzoneNativePixmapTestDelegate() {
client_pixmap_factory_ = ui::ClientNativePixmapFactory::Create();
}
- scoped_refptr<gl::GLImage> CreateSolidColorImage(
- const gfx::Size& size,
- const uint8_t color[4]) const {
+ scoped_refptr<GLImage> CreateSolidColorImage(const gfx::Size& size,
+ const uint8_t color[4]) const {
ui::SurfaceFactoryOzone* surface_factory =
ui::OzonePlatform::GetInstance()->GetSurfaceFactoryOzone();
scoped_refptr<ui::NativePixmap> pixmap =
@@ -43,8 +42,8 @@ class GLImageOzoneNativePixmapTestDelegate {
client_pixmap->Unmap();
}
- scoped_refptr<gl::GLImageOzoneNativePixmap> image(
- new gl::GLImageOzoneNativePixmap(size, GL_RGBA));
+ scoped_refptr<GLImageOzoneNativePixmap> image(
+ new GLImageOzoneNativePixmap(size, GL_RGBA));
EXPECT_TRUE(image->Initialize(pixmap.get(), pixmap->GetBufferFormat()));
return image;
}
« no previous file with comments | « ui/gl/gl_image_ozone_native_pixmap.cc ('k') | ui/gl/gl_image_ref_counted_memory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698