diff options
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/web_contents_view_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/web_contents_view_win.cc b/chrome/browser/web_contents_view_win.cc index dcf8136..90da9cd 100644 --- a/chrome/browser/web_contents_view_win.cc +++ b/chrome/browser/web_contents_view_win.cc @@ -100,8 +100,8 @@ void WebContentsViewWin::StartDragging(const WebDropData& drop_data) { data->SetFileContents(drop_data.file_description_filename, drop_data.file_contents); } - if (!drop_data.cf_html.empty()) - data->SetCFHtml(drop_data.cf_html); + if (!drop_data.text_html.empty()) + data->SetHtml(drop_data.text_html, drop_data.html_base_url); if (drop_data.url.is_valid()) { if (drop_data.url.SchemeIs("javascript")) { // We don't want to allow javascript URLs to be dragged to the desktop, |