summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/cocoa/web_drop_target_unittest.mm10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/cocoa/web_drop_target_unittest.mm b/chrome/browser/cocoa/web_drop_target_unittest.mm
index 33965f5..7dd02de 100644
--- a/chrome/browser/cocoa/web_drop_target_unittest.mm
+++ b/chrome/browser/cocoa/web_drop_target_unittest.mm
@@ -37,12 +37,12 @@ class WebDropTargetTest : public RenderViewHostTestHarness {
};
// Make sure nothing leaks.
-TEST_F(WebDropTargetTest, DISABLED_Init) {
+TEST_F(WebDropTargetTest, Init) {
EXPECT_TRUE(drop_target_);
}
// Test flipping of coordinates given a point in window coordinates.
-TEST_F(WebDropTargetTest, DISABLED_Flip) {
+TEST_F(WebDropTargetTest, Flip) {
NSPoint windowPoint = NSZeroPoint;
NSPoint viewPoint =
[drop_target_ flipWindowPointToView:windowPoint
@@ -58,7 +58,7 @@ TEST_F(WebDropTargetTest, DISABLED_Flip) {
EXPECT_NE(screenPoint.y, 0);
}
-TEST_F(WebDropTargetTest, DISABLED_URL) {
+TEST_F(WebDropTargetTest, URL) {
WebDropData data;
// Put a URL on the pasteboard and check it.
@@ -85,7 +85,7 @@ TEST_F(WebDropTargetTest, DISABLED_URL) {
[pboard releaseGlobally];
}
-TEST_F(WebDropTargetTest, DISABLED_Data) {
+TEST_F(WebDropTargetTest, Data) {
WebDropData data;
NSPasteboard* pboard = [NSPasteboard pasteboardWithUniqueName];
@@ -105,7 +105,7 @@ TEST_F(WebDropTargetTest, DISABLED_Data) {
[pboard releaseGlobally];
}
-TEST_F(WebDropTargetTest, DISABLED_EnterExitDrop) {
+TEST_F(WebDropTargetTest, EnterExitDrop) {
// TODO(pinkerton): Call enter/exit/drop and see what happens. This is a bit
// harder to test.
}