| 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 #import "content/browser/web_contents/web_drag_source_mac.h" | 5 #import "content/browser/web_contents/web_drag_source_mac.h" |
| 6 | 6 |
| 7 #include <sys/param.h> | 7 #include <sys/param.h> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/mac/mac_util.h" | 12 #include "base/mac/mac_util.h" |
| 13 #include "base/pickle.h" | 13 #include "base/pickle.h" |
| 14 #include "base/strings/string_util.h" | 14 #include "base/strings/string_util.h" |
| 15 #include "base/strings/sys_string_conversions.h" | 15 #include "base/strings/sys_string_conversions.h" |
| 16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
| 17 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
| 18 #include "base/threading/thread_restrictions.h" | 18 #include "base/threading/thread_restrictions.h" |
| 19 #include "content/browser/browser_thread_impl.h" | 19 #include "content/browser/browser_thread_impl.h" |
| 20 #include "content/browser/download/drag_download_file.h" | 20 #include "content/browser/download/drag_download_file.h" |
| 21 #include "content/browser/download/drag_download_util.h" | 21 #include "content/browser/download/drag_download_util.h" |
| 22 #include "content/browser/renderer_host/render_view_host_impl.h" | 22 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 23 #include "content/browser/web_contents/web_contents_impl.h" | 23 #include "content/browser/web_contents/web_contents_impl.h" |
| 24 #include "content/public/browser/content_browser_client.h" | 24 #include "content/public/browser/content_browser_client.h" |
| 25 #include "content/public/common/content_client.h" | 25 #include "content/public/common/content_client.h" |
| 26 #include "content/public/common/drop_data.h" | 26 #include "content/public/common/drop_data.h" |
| 27 #include "grit/ui_resources.h" | |
| 28 #include "net/base/escape.h" | 27 #include "net/base/escape.h" |
| 29 #include "net/base/filename_util.h" | 28 #include "net/base/filename_util.h" |
| 30 #include "net/base/mime_util.h" | 29 #include "net/base/mime_util.h" |
| 31 #include "ui/base/clipboard/custom_data_helper.h" | 30 #include "ui/base/clipboard/custom_data_helper.h" |
| 32 #include "ui/base/dragdrop/cocoa_dnd_util.h" | 31 #include "ui/base/dragdrop/cocoa_dnd_util.h" |
| 33 #include "ui/gfx/image/image.h" | 32 #include "ui/gfx/image/image.h" |
| 33 #include "ui/resources/grit/ui_resources.h" |
| 34 #include "url/url_constants.h" | 34 #include "url/url_constants.h" |
| 35 | 35 |
| 36 using base::SysNSStringToUTF8; | 36 using base::SysNSStringToUTF8; |
| 37 using base::SysUTF8ToNSString; | 37 using base::SysUTF8ToNSString; |
| 38 using base::SysUTF16ToNSString; | 38 using base::SysUTF16ToNSString; |
| 39 using content::BrowserThread; | 39 using content::BrowserThread; |
| 40 using content::DragDownloadFile; | 40 using content::DragDownloadFile; |
| 41 using content::DropData; | 41 using content::DropData; |
| 42 using content::PromiseFileFinalizer; | 42 using content::PromiseFileFinalizer; |
| 43 using content::RenderViewHostImpl; | 43 using content::RenderViewHostImpl; |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 - (NSImage*)dragImage { | 457 - (NSImage*)dragImage { |
| 458 if (dragImage_) | 458 if (dragImage_) |
| 459 return dragImage_; | 459 return dragImage_; |
| 460 | 460 |
| 461 // Default to returning a generic image. | 461 // Default to returning a generic image. |
| 462 return content::GetContentClient()->GetNativeImageNamed( | 462 return content::GetContentClient()->GetNativeImageNamed( |
| 463 IDR_DEFAULT_FAVICON).ToNSImage(); | 463 IDR_DEFAULT_FAVICON).ToNSImage(); |
| 464 } | 464 } |
| 465 | 465 |
| 466 @end // @implementation WebDragSource (Private) | 466 @end // @implementation WebDragSource (Private) |
| OLD | NEW |