summaryrefslogtreecommitdiffstats
path: root/webkit/tools
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-19 20:22:00 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-19 20:22:00 +0000
commit02bae0f37e6b09992f3b81792735010f28b9542e (patch)
treeb33485cba2d3f3049d7e801957759b268aa9257e /webkit/tools
parentcfe1d619ca7f651c509ce4a4b52540fd573fbcd3 (diff)
downloadchromium_src-02bae0f37e6b09992f3b81792735010f28b9542e.zip
chromium_src-02bae0f37e6b09992f3b81792735010f28b9542e.tar.gz
chromium_src-02bae0f37e6b09992f3b81792735010f28b9542e.tar.bz2
Move more dnd related files to ui/base
BUG=none TEST=none TBR=brettw Review URL: http://codereview.chromium.org/6250014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71828 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r--webkit/tools/test_shell/drag_delegate.h10
-rw-r--r--webkit/tools/test_shell/drop_delegate.cc2
-rw-r--r--webkit/tools/test_shell/drop_delegate.h4
3 files changed, 8 insertions, 8 deletions
diff --git a/webkit/tools/test_shell/drag_delegate.h b/webkit/tools/test_shell/drag_delegate.h
index d1f4e26..91d8ebd 100644
--- a/webkit/tools/test_shell/drag_delegate.h
+++ b/webkit/tools/test_shell/drag_delegate.h
@@ -5,23 +5,23 @@
#ifndef WEBKIT_TOOLS_TEST_SHELL_DRAG_DELEGATE_H__
#define WEBKIT_TOOLS_TEST_SHELL_DRAG_DELEGATE_H__
-#include "app/win/drag_source.h"
+#include "ui/base/dragdrop/drag_source.h"
namespace WebKit {
class WebView;
}
-// A class that implements app::win::DragSource for the test shell webview
+// A class that implements ui::DragSource for the test shell webview
// delegate.
-class TestDragDelegate : public app::win::DragSource {
+class TestDragDelegate : public ui::DragSource {
public:
TestDragDelegate(HWND source_hwnd, WebKit::WebView* webview)
- : app::win::DragSource(),
+ : ui::DragSource(),
source_hwnd_(source_hwnd),
webview_(webview) { }
protected:
- // app::win::DragSource
+ // ui::DragSource
virtual void OnDragSourceCancel();
virtual void OnDragSourceDrop();
virtual void OnDragSourceMove();
diff --git a/webkit/tools/test_shell/drop_delegate.cc b/webkit/tools/test_shell/drop_delegate.cc
index 1b63e51..9fbf364 100644
--- a/webkit/tools/test_shell/drop_delegate.cc
+++ b/webkit/tools/test_shell/drop_delegate.cc
@@ -15,7 +15,7 @@ using WebKit::WebPoint;
using WebKit::WebView;
TestDropDelegate::TestDropDelegate(HWND source_hwnd, WebKit::WebView* webview)
- : app::win::DropTarget(source_hwnd),
+ : ui::DropTarget(source_hwnd),
webview_(webview) {
}
diff --git a/webkit/tools/test_shell/drop_delegate.h b/webkit/tools/test_shell/drop_delegate.h
index 1e13c77..877710c 100644
--- a/webkit/tools/test_shell/drop_delegate.h
+++ b/webkit/tools/test_shell/drop_delegate.h
@@ -7,13 +7,13 @@
#ifndef WEBKIT_TOOLS_TEST_SHELL_DROP_DELEGATE_H_
#define WEBKIT_TOOLS_TEST_SHELL_DROP_DELEGATE_H_
-#include "app/win/drop_target.h"
+#include "ui/base/dragdrop/drop_target.h"
namespace WebKit {
class WebView;
}
-class TestDropDelegate : public app::win::DropTarget {
+class TestDropDelegate : public ui::DropTarget {
public:
TestDropDelegate(HWND source_hwnd, WebKit::WebView* webview);