| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_GL_GL_SURFACE_EGL_H_ | 5 #ifndef UI_GL_GL_SURFACE_EGL_H_ |
| 6 #define UI_GL_GL_SURFACE_EGL_H_ | 6 #define UI_GL_GL_SURFACE_EGL_H_ |
| 7 | 7 |
| 8 #if defined(OS_WIN) | 8 #if defined(OS_WIN) |
| 9 #include <windows.h> | 9 #include <windows.h> |
| 10 #endif | 10 #endif |
| 11 | 11 |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/memory/scoped_ptr.h" |
| 17 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 18 #include "build/build_config.h" | 19 #include "build/build_config.h" |
| 19 #include "ui/gfx/geometry/size.h" | 20 #include "ui/gfx/geometry/size.h" |
| 20 #include "ui/gfx/vsync_provider.h" | 21 #include "ui/gfx/vsync_provider.h" |
| 21 #include "ui/gl/gl_bindings.h" | 22 #include "ui/gl/gl_bindings.h" |
| 22 #include "ui/gl/gl_surface.h" | 23 #include "ui/gl/gl_surface.h" |
| 23 #include "ui/gl/gl_surface_overlay.h" | 24 #include "ui/gl/gl_surface_overlay.h" |
| 24 | 25 |
| 25 namespace gfx { | 26 namespace gfx { |
| 26 | 27 |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 ~SurfacelessEGL() override; | 206 ~SurfacelessEGL() override; |
| 206 | 207 |
| 207 private: | 208 private: |
| 208 gfx::Size size_; | 209 gfx::Size size_; |
| 209 DISALLOW_COPY_AND_ASSIGN(SurfacelessEGL); | 210 DISALLOW_COPY_AND_ASSIGN(SurfacelessEGL); |
| 210 }; | 211 }; |
| 211 | 212 |
| 212 } // namespace gfx | 213 } // namespace gfx |
| 213 | 214 |
| 214 #endif // UI_GL_GL_SURFACE_EGL_H_ | 215 #endif // UI_GL_GL_SURFACE_EGL_H_ |
| OLD | NEW |