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

Side by Side Diff: content/browser/tab_contents/web_drag_dest_gtk.cc

Issue 8429005: Tweak the WebDragDestDelegate to be useful for more than GTK. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: TOOLKIT_USES_GTK Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/browser/tab_contents/web_drag_dest_gtk.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/tab_contents/web_drag_dest_gtk.h" 5 #include "content/browser/tab_contents/web_drag_dest_gtk.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
12 #include "content/browser/renderer_host/render_view_host.h" 12 #include "content/browser/renderer_host/render_view_host.h"
13 #include "content/browser/tab_contents/drag_utils_gtk.h" 13 #include "content/browser/tab_contents/drag_utils_gtk.h"
14 #include "content/browser/tab_contents/tab_contents.h" 14 #include "content/browser/tab_contents/tab_contents.h"
15 #include "content/browser/tab_contents/web_drag_dest_delegate_gtk.h" 15 #include "content/browser/tab_contents/web_drag_dest_delegate.h"
16 #include "content/public/common/url_constants.h" 16 #include "content/public/common/url_constants.h"
17 #include "net/base/net_util.h" 17 #include "net/base/net_util.h"
18 #include "ui/base/dragdrop/gtk_dnd_util.h" 18 #include "ui/base/dragdrop/gtk_dnd_util.h"
19 #include "ui/base/gtk/gtk_screen_utils.h" 19 #include "ui/base/gtk/gtk_screen_utils.h"
20 20
21 using WebKit::WebDragOperation; 21 using WebKit::WebDragOperation;
22 using WebKit::WebDragOperationNone; 22 using WebKit::WebDragOperationNone;
23 23
24 namespace content { 24 namespace content {
25 25
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 254
255 // The second parameter is just an educated guess as to whether or not the 255 // The second parameter is just an educated guess as to whether or not the
256 // drag succeeded, but at least we will get the drag-end animation right 256 // drag succeeded, but at least we will get the drag-end animation right
257 // sometimes. 257 // sometimes.
258 gtk_drag_finish(context, is_drop_target_, FALSE, time); 258 gtk_drag_finish(context, is_drop_target_, FALSE, time);
259 259
260 return TRUE; 260 return TRUE;
261 } 261 }
262 262
263 } // namespace content 263 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/tab_contents/web_drag_dest_gtk.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698