Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Unified Diff: webkit/glue/dragclient_impl.h

Issue 338041: Move a bunch of files into webkit/api/src... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/glue/dragclient_impl.h
===================================================================
--- webkit/glue/dragclient_impl.h (revision 30163)
+++ webkit/glue/dragclient_impl.h (working copy)
@@ -1,49 +0,0 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WEBKIT_GLUE_DRAGCLIENT_IMPL_H__
-#define WEBKIT_GLUE_DRAGCLIENT_IMPL_H__
-
-#include "DragClient.h"
-#include "DragActions.h"
-
-namespace WebCore {
-class ClipBoard;
-class DragData;
-class IntPoint;
-class KURL;
-}
-
-class WebViewImpl;
-
-class DragClientImpl : public WebCore::DragClient {
- public:
- DragClientImpl(WebViewImpl* webview) : webview_(webview) {}
- virtual ~DragClientImpl() {}
-
- virtual void willPerformDragDestinationAction(WebCore::DragDestinationAction,
- WebCore::DragData*);
- virtual void willPerformDragSourceAction(WebCore::DragSourceAction,
- const WebCore::IntPoint&,
- WebCore::Clipboard*);
- virtual WebCore::DragDestinationAction actionMaskForDrag(WebCore::DragData*);
- virtual WebCore::DragSourceAction dragSourceActionMaskForPoint(
- const WebCore::IntPoint& window_point);
-
- virtual void startDrag(WebCore::DragImageRef drag_image,
- const WebCore::IntPoint& drag_image_origin,
- const WebCore::IntPoint& event_pos,
- WebCore::Clipboard* clipboard,
- WebCore::Frame* frame,
- bool is_link_drag = false);
- virtual WebCore::DragImageRef createDragImageForLink(
- WebCore::KURL&, const WebCore::String& label, WebCore::Frame*);
-
- virtual void dragControllerDestroyed();
-
- private:
- WebViewImpl* webview_;
-};
-
-#endif // #ifndef WEBKIT_GLUE_DRAGCLIENT_IMPL_H__

Powered by Google App Engine
This is Rietveld 408576698