blob: 43525880e2477cbd6c24b2e4ef90b069e9800810 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright (c) 2011 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 CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_BOOKMARK_HANDLER_GTK_H_
#define CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_BOOKMARK_HANDLER_GTK_H_
#pragma once
#include "base/compiler_specific.h"
#include "chrome/browser/bookmarks/bookmark_node_data.h"
#include "content/browser/tab_contents/web_drag_dest_delegate.h"
class TabContentsWrapper;
// Chrome needs to intercept content drag events so it can dispatch them to the
// bookmarks and extensions system.
class WebDragBookmarkHandlerGtk : public content::WebDragDestDelegate {
public:
WebDragBookmarkHandlerGtk();
virtual ~WebDragBookmarkHandlerGtk();
// Overridden from content::WebDragDestDelegate:
virtual void DragInitialize(TabContents* contents) OVERRIDE;
virtual GdkAtom GetBookmarkTargetAtom() const OVERRIDE;
virtual void OnReceiveDataFromGtk(GtkSelectionData* data) OVERRIDE;
virtual void OnReceiveProcessedData(const GURL& url,
const string16& title) OVERRIDE;
virtual void OnDragOver() OVERRIDE;
virtual void OnDragEnter() OVERRIDE;
virtual void OnDrop() OVERRIDE;
virtual void OnDragLeave() OVERRIDE;
private:
// The TabContentsWrapper for |tab_contents_|.
// Weak reference; may be NULL if the contents aren't contained in a wrapper
// (e.g. WebUI dialogs).
TabContentsWrapper* tab_;
// The bookmark data for the current tab. This will be empty if there is not
// a native bookmark drag (or we haven't gotten the data from the source yet).
BookmarkNodeData bookmark_drag_data_;
DISALLOW_COPY_AND_ASSIGN(WebDragBookmarkHandlerGtk);
};
#endif // CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_BOOKMARK_HANDLER_GTK_H_
|