| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_WEB_DRAG_DEST_DELEGATE_H_ | |
| 6 #define CONTENT_BROWSER_TAB_CONTENTS_WEB_DRAG_DEST_DELEGATE_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #if defined(TOOLKIT_GTK) | |
| 10 #include <gtk/gtk.h> | |
| 11 #endif // TOOLKIT_GTK | |
| 12 | |
| 13 #include "base/string16.h" | |
| 14 #include "content/common/content_export.h" | |
| 15 | |
| 16 class GURL; | |
| 17 class TabContents; | |
| 18 | |
| 19 namespace content { | |
| 20 | |
| 21 // An optional delegate that listens for drags of bookmark data. | |
| 22 class CONTENT_EXPORT WebDragDestDelegate { | |
| 23 public: | |
| 24 // Announces that a drag has started. It's valid that a drag starts, along | |
| 25 // with over/enter/leave/drop notifications without receiving any bookmark | |
| 26 // data. | |
| 27 virtual void DragInitialize(TabContents* contents) = 0; | |
| 28 | |
| 29 // Notifications of drag progression. | |
| 30 virtual void OnDragOver() = 0; | |
| 31 virtual void OnDragEnter() = 0; | |
| 32 virtual void OnDrop() = 0; | |
| 33 | |
| 34 #if defined(TOOLKIT_GTK) | |
| 35 // Returns the bookmark atom type. GTK and Views return different values here. | |
| 36 virtual GdkAtom GetBookmarkTargetAtom() const = 0; | |
| 37 | |
| 38 // Called when WebDragDestkGtk detects that there's bookmark data in a | |
| 39 // drag. Not every drag will trigger these. | |
| 40 virtual void OnReceiveDataFromGtk(GtkSelectionData* data) = 0; | |
| 41 virtual void OnReceiveProcessedData(const GURL& url, | |
| 42 const string16& title) = 0; | |
| 43 #endif // TOOLKIT_GTK | |
| 44 | |
| 45 // This should also clear any state kept about this drag. | |
| 46 virtual void OnDragLeave() = 0; | |
| 47 | |
| 48 virtual ~WebDragDestDelegate() {} | |
| 49 }; | |
| 50 | |
| 51 } // namespace content | |
| 52 | |
| 53 #endif // CONTENT_BROWSER_TAB_CONTENTS_WEB_DRAG_DEST_DELEGATE_H_ | |
| OLD | NEW |