| Index: ui/gl/gl_image_native_pixmap.h
|
| diff --git a/ui/gl/gl_image_native_pixmap.h b/ui/gl/gl_image_native_pixmap.h
|
| index ca6a8488c9d750d843fd5ee8a07c1bc42bd7d57d..8e6e5b32d1a2857aaa77ac581dfb134a824ac5f1 100644
|
| --- a/ui/gl/gl_image_native_pixmap.h
|
| +++ b/ui/gl/gl_image_native_pixmap.h
|
| @@ -13,13 +13,13 @@
|
| #include "ui/gl/gl_export.h"
|
| #include "ui/gl/gl_image_egl.h"
|
|
|
| -namespace ui {
|
| +namespace gl {
|
|
|
| class GL_EXPORT GLImageNativePixmap : public gl::GLImageEGL {
|
| public:
|
| GLImageNativePixmap(const gfx::Size& size, unsigned internalformat);
|
|
|
| - bool Initialize(NativePixmap* pixmap, gfx::BufferFormat format);
|
| + bool Initialize(gfx::NativePixmap* pixmap, gfx::BufferFormat format);
|
|
|
| // Overridden from GLImage:
|
| unsigned GetInternalFormat() override;
|
| @@ -41,10 +41,10 @@ class GL_EXPORT GLImageNativePixmap : public gl::GLImageEGL {
|
|
|
| private:
|
| unsigned internalformat_;
|
| - scoped_refptr<NativePixmap> pixmap_;
|
| + scoped_refptr<gfx::NativePixmap> pixmap_;
|
| bool has_image_flush_external_;
|
| };
|
|
|
| -} // namespace ui
|
| +} // namespace gl
|
|
|
| #endif // UI_GL_GL_IMAGE_NATIVE_PIXMAP_H_
|
|
|