Index: cc/test/fake_web_graphics_context_3d.h |
diff --git a/cc/debug/fake_web_graphics_context_3d.h b/cc/test/fake_web_graphics_context_3d.h |
similarity index 98% |
rename from cc/debug/fake_web_graphics_context_3d.h |
rename to cc/test/fake_web_graphics_context_3d.h |
index f923f71409c0823cc5863580c1a179dc052cd887..35f55c621f8534aa350e0cc904f75d9b1303817d 100644 |
--- a/cc/debug/fake_web_graphics_context_3d.h |
+++ b/cc/test/fake_web_graphics_context_3d.h |
@@ -2,21 +2,18 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef CC_DEBUG_FAKE_WEB_GRAPHICS_CONTEXT_3D_H_ |
-#define CC_DEBUG_FAKE_WEB_GRAPHICS_CONTEXT_3D_H_ |
+#ifndef CC_TEST_FAKE_WEB_GRAPHICS_CONTEXT_3D_H_ |
+#define CC_TEST_FAKE_WEB_GRAPHICS_CONTEXT_3D_H_ |
#include <string> |
-#include "base/compiler_specific.h" |
-#include "cc/base/cc_export.h" |
#include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
namespace cc { |
// WebGraphicsContext3D base class for use in unit tests. |
// All operations are no-ops (returning 0 if necessary). |
-class CC_EXPORT FakeWebGraphicsContext3D |
- : public NON_EXPORTED_BASE(WebKit::WebGraphicsContext3D) { |
+class FakeWebGraphicsContext3D : public WebKit::WebGraphicsContext3D { |
public: |
FakeWebGraphicsContext3D(); |
virtual ~FakeWebGraphicsContext3D(); |
@@ -614,4 +611,4 @@ class CC_EXPORT FakeWebGraphicsContext3D |
} // namespace cc |
-#endif // CC_DEBUG_FAKE_WEB_GRAPHICS_CONTEXT_3D_H_ |
+#endif // CC_TEST_FAKE_WEB_GRAPHICS_CONTEXT_3D_H_ |