Chromium Code Reviews| Index: webkit/glue/webdropdata.h |
| diff --git a/webkit/glue/webdropdata.h b/webkit/glue/webdropdata.h |
| index a9a4ae76c366b93373d93b807e4e57cc1fddb303..844a435593a4990bfbecd9187abc2310ca2b3704 100644 |
| --- a/webkit/glue/webdropdata.h |
| +++ b/webkit/glue/webdropdata.h |
| @@ -9,6 +9,7 @@ |
| #ifndef WEBKIT_GLUE_WEBDROPDATA_H_ |
| #define WEBKIT_GLUE_WEBDROPDATA_H_ |
| +#include <map> |
| #include <string> |
| #include <vector> |
| @@ -55,6 +56,8 @@ struct WebDropData { |
| string16 file_description_filename; |
| std::string file_contents; |
| + std::map<string16, string16> custom_data; |
|
tony
2011/12/02 00:13:29
Hmm, I guess since the API is from javascript, the
dcheng
2011/12/02 00:29:17
Given the APIs available on Windows/Linux, we can'
|
| + |
| // Convert to a WebDragData object. |
| WebKit::WebDragData ToDragData() const; |