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

Unified Diff: webkit/glue/webdropdata.h

Issue 11247: Remove cf_html from webdropdata.h. This is windows (Closed)
Patch Set: fix feedback Created 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/clipboard_conversion.cc ('k') | webkit/glue/webdropdata.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « webkit/glue/clipboard_conversion.cc ('k') | webkit/glue/webdropdata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698