summaryrefslogtreecommitdiffstats
path: root/WebCore/page/android/DragControllerAndroid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/android/DragControllerAndroid.cpp')
-rw-r--r--WebCore/page/android/DragControllerAndroid.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/WebCore/page/android/DragControllerAndroid.cpp b/WebCore/page/android/DragControllerAndroid.cpp
index 99e18a6..b20ab60 100644
--- a/WebCore/page/android/DragControllerAndroid.cpp
+++ b/WebCore/page/android/DragControllerAndroid.cpp
@@ -28,6 +28,7 @@
#include "DragController.h"
#include "DragData.h"
+#include "NotImplemented.h"
namespace WebCore {
@@ -38,13 +39,13 @@ bool DragController::isCopyKeyDown()
DragOperation DragController::dragOperation(DragData* dragData)
{
- //FIXME: This logic is incomplete
- ASSERT(0);
+ // FIXME: This logic is incomplete
+ notImplemented();
if (dragData->containsURL())
return DragOperationCopy;
return DragOperationNone;
-}
+}
void DragController::cleanupAfterSystemDrag()
{