This source file includes following definitions.
- web_contents_
- DragInitialize
- OnDragOver
- OnReceiveDragData
- OnDragEnter
- OnDrop
- OnDragLeave
#include "chrome/browser/ui/aura/tab_contents/web_drag_bookmark_handler_aura.h"
#include "chrome/browser/bookmarks/bookmark_node_data.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/bookmarks/bookmark_tab_helper.h"
#include "content/public/browser/web_contents.h"
#include "ui/base/dragdrop/os_exchange_data.h"
using content::WebContents;
WebDragBookmarkHandlerAura::WebDragBookmarkHandlerAura()
: bookmark_tab_helper_(NULL),
web_contents_(NULL) {
}
WebDragBookmarkHandlerAura::~WebDragBookmarkHandlerAura() {
}
void WebDragBookmarkHandlerAura::DragInitialize(WebContents* contents) {
web_contents_ = contents;
if (!bookmark_tab_helper_)
bookmark_tab_helper_ = BookmarkTabHelper::FromWebContents(contents);
}
void WebDragBookmarkHandlerAura::OnDragOver() {
if (bookmark_tab_helper_ && bookmark_tab_helper_->bookmark_drag_delegate()) {
if (bookmark_drag_data_.is_valid())
bookmark_tab_helper_->bookmark_drag_delegate()->OnDragOver(
bookmark_drag_data_);
}
}
void WebDragBookmarkHandlerAura::OnReceiveDragData(
const ui::OSExchangeData& data) {
if (bookmark_tab_helper_ && bookmark_tab_helper_->bookmark_drag_delegate()) {
bookmark_drag_data_.Read(data);
}
}
void WebDragBookmarkHandlerAura::OnDragEnter() {
if (bookmark_tab_helper_ && bookmark_tab_helper_->bookmark_drag_delegate()) {
if (bookmark_drag_data_.is_valid())
bookmark_tab_helper_->bookmark_drag_delegate()->OnDragEnter(
bookmark_drag_data_);
}
}
void WebDragBookmarkHandlerAura::OnDrop() {
if (bookmark_tab_helper_) {
if (bookmark_tab_helper_->bookmark_drag_delegate()) {
if (bookmark_drag_data_.is_valid()) {
bookmark_tab_helper_->bookmark_drag_delegate()->OnDrop(
bookmark_drag_data_);
}
}
Browser* browser = chrome::FindBrowserWithWebContents(web_contents_);
if (browser)
browser->window()->Show();
}
bookmark_drag_data_.Clear();
}
void WebDragBookmarkHandlerAura::OnDragLeave() {
if (bookmark_tab_helper_ && bookmark_tab_helper_->bookmark_drag_delegate()) {
if (bookmark_drag_data_.is_valid())
bookmark_tab_helper_->bookmark_drag_delegate()->OnDragLeave(
bookmark_drag_data_);
}
bookmark_drag_data_.Clear();
}