Index: content/common/cursors/webcursor_unittest.cc |
diff --git a/webkit/common/cursors/webcursor_unittest.cc b/content/common/cursors/webcursor_unittest.cc |
similarity index 98% |
rename from webkit/common/cursors/webcursor_unittest.cc |
rename to content/common/cursors/webcursor_unittest.cc |
index fe7814437e5017566e4c5add4e2688ddaf0f0850..a57b84338e6671eb8ffa57160ec43d2f9a900679 100644 |
--- a/webkit/common/cursors/webcursor_unittest.cc |
+++ b/content/common/cursors/webcursor_unittest.cc |
@@ -3,12 +3,14 @@ |
// found in the LICENSE file. |
#include "base/pickle.h" |
+#include "content/common/cursors/webcursor.h" |
#include "testing/gtest/include/gtest/gtest.h" |
#include "third_party/WebKit/public/platform/WebCursorInfo.h" |
-#include "webkit/common/cursors/webcursor.h" |
using blink::WebCursorInfo; |
+namespace content { |
+ |
TEST(WebCursorTest, OKCursorSerialization) { |
WebCursor custom_cursor; |
// This is a valid custom cursor. |
@@ -228,3 +230,5 @@ TEST(WebCursorTest, Scale2) { |
EXPECT_TRUE(custom_cursor.GetCustomCursor()); |
#endif |
} |
+ |
+} // namespace content |