| Index: chrome/browser/tab_contents/web_drag_source_win.cc
|
| ===================================================================
|
| --- chrome/browser/tab_contents/web_drag_source_win.cc (revision 62888)
|
| +++ chrome/browser/tab_contents/web_drag_source_win.cc (working copy)
|
| @@ -32,7 +32,7 @@
|
|
|
| WebDragSource::WebDragSource(gfx::NativeWindow source_wnd,
|
| TabContents* tab_contents)
|
| - : BaseDragSource(),
|
| + : app::win::DragSource(),
|
| source_wnd_(source_wnd),
|
| render_view_host_(tab_contents->render_view_host()),
|
| effect_(DROPEFFECT_NONE) {
|
| @@ -42,6 +42,9 @@
|
| Source<TabContents>(tab_contents));
|
| }
|
|
|
| +WebDragSource::~WebDragSource() {
|
| +}
|
| +
|
| void WebDragSource::OnDragSourceCancel() {
|
| // Delegate to the UI thread if we do drag-and-drop in the background thread.
|
| if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
|
|
|