| Index: webkit/glue/webdropdata.h
|
| diff --git a/webkit/glue/webdropdata.h b/webkit/glue/webdropdata.h
|
| index 38d67b479ba3ce49bfaf853c7f6a9967d3248ab6..e6d51f4ac749c476b671362ef1f00020b4b21a15 100644
|
| --- a/webkit/glue/webdropdata.h
|
| +++ b/webkit/glue/webdropdata.h
|
| @@ -26,14 +26,11 @@ struct WebDropData {
|
| // User is dragging plain text into the webview.
|
| std::wstring plain_text;
|
|
|
| - // User is dragging MS HTML into the webview (e.g., out of IE).
|
| - // TODO(tc): We should remove this from webdropdata because not all platforms
|
| - // have cf_html. On the browser side, we should do the necessary conversions
|
| - // so we still support cf_html.
|
| - std::wstring cf_html;
|
| -
|
| - // User is dragging text/html into the webview (e.g., out of Firefox).
|
| + // User is dragging text/html into the webview (e.g., out of Firefox).
|
| + // |html_base_url| is the URL that the html fragment is taken from (used to
|
| + // resolve relative links). It's ok for |html_base_url| to be empty.
|
| std::wstring text_html;
|
| + GURL html_base_url;
|
|
|
| // User is dragging data from the webview (e.g., an image).
|
| std::wstring file_description_filename;
|
|
|