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

Unified Diff: ui/gl/gl_interface.h

Issue 10392068: ui: Move gl/ directory out of gfx/, up to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mac_rel Created 8 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_implementation_win.cc ('k') | ui/gl/gl_interface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_interface.h
diff --git a/ui/gfx/gl/gl_interface.h b/ui/gl/gl_interface.h
similarity index 99%
rename from ui/gfx/gl/gl_interface.h
rename to ui/gl/gl_interface.h
index e5f1b46f2c94657c0773cce6536114af51ee7b79..db120b6e19efa1eab2caccfae8b92f3bb75e385b 100644
--- a/ui/gfx/gl/gl_interface.h
+++ b/ui/gl/gl_interface.h
@@ -2,22 +2,21 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#ifndef UI_GL_GL_INTERFACE_H_
+#define UI_GL_GL_INTERFACE_H_
+#pragma once
+
// This file implements glue to a GL interface so we can mock it for unit
// testing. It has to be Desktop GL, not GLES2 as it is used to test the service
// side code.
-#ifndef UI_GFX_GL_GL_INTERFACE_H_
-#define UI_GFX_GL_GL_INTERFACE_H_
-#pragma once
-
-#include "ui/gfx/gl/gl_bindings.h"
+#include "ui/gl/gl_bindings.h"
namespace gfx {
class GL_EXPORT GLInterface {
public:
- virtual ~GLInterface() {
- }
+ virtual ~GLInterface() {}
static void SetGLInterface(GLInterface* gl_interface);
@@ -638,4 +637,4 @@ class GL_EXPORT GLInterface {
} // namespace gfx
-#endif // UI_GFX_GL_GL_INTERFACE_H_
+#endif // UI_GL_GL_INTERFACE_H_
« no previous file with comments | « ui/gl/gl_implementation_win.cc ('k') | ui/gl/gl_interface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698