OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/web_contents/web_contents_drag_win.h" | 5 #include "content/browser/web_contents/web_contents_drag_win.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
14 #include "base/pickle.h" | 14 #include "base/pickle.h" |
15 #include "base/threading/platform_thread.h" | 15 #include "base/threading/platform_thread.h" |
16 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
17 #include "base/utf_string_conversions.h" | 17 #include "base/utf_string_conversions.h" |
18 #include "content/browser/download/drag_download_file.h" | 18 #include "content/browser/download/drag_download_file.h" |
19 #include "content/browser/download/drag_download_util.h" | 19 #include "content/browser/download/drag_download_util.h" |
20 #include "content/browser/web_contents/web_drag_dest_win.h" | 20 #include "content/browser/web_contents/web_drag_dest_win.h" |
21 #include "content/browser/web_contents/web_drag_source_win.h" | 21 #include "content/browser/web_contents/web_drag_source_win.h" |
22 #include "content/browser/web_contents/web_drag_utils_win.h" | 22 #include "content/browser/web_contents/web_drag_utils_win.h" |
23 #include "content/public/browser/browser_thread.h" | 23 #include "content/public/browser/browser_thread.h" |
24 #include "content/public/browser/content_browser_client.h" | 24 #include "content/public/browser/content_browser_client.h" |
25 #include "content/public/browser/web_contents.h" | 25 #include "content/public/browser/web_contents.h" |
26 #include "content/public/browser/web_drag_dest_delegate.h" | 26 #include "content/public/browser/web_drag_dest_delegate.h" |
27 #include "net/base/net_util.h" | 27 #include "net/base/net_util.h" |
| 28 #include "third_party/skia/include/core/SkBitmap.h" |
28 #include "ui/base/clipboard/clipboard_util_win.h" | 29 #include "ui/base/clipboard/clipboard_util_win.h" |
29 #include "ui/base/clipboard/custom_data_helper.h" | 30 #include "ui/base/clipboard/custom_data_helper.h" |
30 #include "ui/base/dragdrop/drag_utils.h" | 31 #include "ui/base/dragdrop/drag_utils.h" |
31 #include "ui/base/layout.h" | 32 #include "ui/base/layout.h" |
32 #include "ui/gfx/image/image_skia.h" | 33 #include "ui/gfx/image/image_skia.h" |
33 #include "ui/gfx/screen.h" | 34 #include "ui/gfx/screen.h" |
34 #include "ui/gfx/size.h" | 35 #include "ui/gfx/size.h" |
35 #include "webkit/glue/webdropdata.h" | 36 #include "webkit/glue/webdropdata.h" |
36 | 37 |
37 using content::BrowserThread; | 38 using content::BrowserThread; |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 void WebContentsDragWin::OnDataObjectDisposed() { | 369 void WebContentsDragWin::OnDataObjectDisposed() { |
369 DCHECK(drag_drop_thread_id_ == base::PlatformThread::CurrentId()); | 370 DCHECK(drag_drop_thread_id_ == base::PlatformThread::CurrentId()); |
370 | 371 |
371 // The drag-and-drop thread is only closed after OLE is done with | 372 // The drag-and-drop thread is only closed after OLE is done with |
372 // DataObjectImpl. | 373 // DataObjectImpl. |
373 BrowserThread::PostTask( | 374 BrowserThread::PostTask( |
374 BrowserThread::UI, | 375 BrowserThread::UI, |
375 FROM_HERE, | 376 FROM_HERE, |
376 base::Bind(&WebContentsDragWin::CloseThread, this)); | 377 base::Bind(&WebContentsDragWin::CloseThread, this)); |
377 } | 378 } |
OLD | NEW |