summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/mock_webclipboard_impl.h
diff options
context:
space:
mode:
authordcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-07 22:43:41 +0000
committerdcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-07 22:43:41 +0000
commit97c2c0304fcda75890b4490ca5e6d569db30ca6d (patch)
tree083da18448d0479ffd8ec09ba530475309bb1fac /webkit/tools/test_shell/mock_webclipboard_impl.h
parent156c84585048ca444173b55097392e43c199a56c (diff)
downloadchromium_src-97c2c0304fcda75890b4490ca5e6d569db30ca6d.zip
chromium_src-97c2c0304fcda75890b4490ca5e6d569db30ca6d.tar.gz
chromium_src-97c2c0304fcda75890b4490ca5e6d569db30ca6d.tar.bz2
Implement new Chromium IPCs for copying/dragging.
A new ClipboardDispatcher interface has been added to handle the IPC calls. The new methods don't really belong on the existing Clipboard class, since that class deals with only copy and paste. On Windows and Mac, ClipboardDispatcher will share logic for copy/paste and drag/drop. GTK will have to use two separate code paths. BUG=31037 TEST=none Review URL: http://codereview.chromium.org/2842016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51790 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/mock_webclipboard_impl.h')
-rw-r--r--webkit/tools/test_shell/mock_webclipboard_impl.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/webkit/tools/test_shell/mock_webclipboard_impl.h b/webkit/tools/test_shell/mock_webclipboard_impl.h
index 8feac76..57d7e17 100644
--- a/webkit/tools/test_shell/mock_webclipboard_impl.h
+++ b/webkit/tools/test_shell/mock_webclipboard_impl.h
@@ -11,8 +11,6 @@
#define WEBKIT_TOOLS_TEST_SHELL_MOCK_WEBCLIPBOARD_IMPL_H_
#include "third_party/WebKit/WebKit/chromium/public/WebClipboard.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebDragData.h"
-#include "third_party/WebKit/WebKit/chromium/public/WebString.h"
class MockWebClipboardImpl : public WebKit::WebClipboard {
public:
@@ -32,7 +30,6 @@ class MockWebClipboardImpl : public WebKit::WebClipboard {
virtual void writeImage(
const WebKit::WebImage&, const WebKit::WebURL&,
const WebKit::WebString& title);
- virtual void writeData(const WebKit::WebDragData&);
private:
WebKit::WebString m_plainText;