Index: ui/gl/x11_pixmap_tracker.cc |
diff --git a/ui/gl/android/surface_texture_tracker.cc b/ui/gl/x11_pixmap_tracker.cc |
similarity index 61% |
copy from ui/gl/android/surface_texture_tracker.cc |
copy to ui/gl/x11_pixmap_tracker.cc |
index d0ff16add929390c1b668aa4593855e3caf8d305..8354bf260692ff2b1b344f5b59ec2c66a639c569 100644 |
--- a/ui/gl/android/surface_texture_tracker.cc |
+++ b/ui/gl/x11_pixmap_tracker.cc |
@@ -2,23 +2,23 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "ui/gl/android/surface_texture_tracker.h" |
+#include "ui/gl/x11_pixmap_tracker.h" |
#include "base/logging.h" |
namespace gfx { |
namespace { |
-SurfaceTextureTracker* g_instance = NULL; |
+X11PixmapTracker* g_instance = NULL; |
} // namespace |
// static |
-SurfaceTextureTracker* SurfaceTextureTracker::GetInstance() { |
+X11PixmapTracker* X11PixmapTracker::GetInstance() { |
DCHECK(g_instance); |
return g_instance; |
} |
// static |
-void SurfaceTextureTracker::InitInstance(SurfaceTextureTracker* tracker) { |
+void X11PixmapTracker::InitInstance(X11PixmapTracker* tracker) { |
DCHECK(!g_instance); |
g_instance = tracker; |
} |