| 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 // A struct for managing data being dropped on a webview. This represents a | 5 // A struct for managing data being dropped on a webview. This represents a |
| 6 // union of all the types of data that can be dropped in a platform neutral | 6 // union of all the types of data that can be dropped in a platform neutral |
| 7 // way. | 7 // way. |
| 8 | 8 |
| 9 #ifndef WEBKIT_GLUE_WEBDROPDATA_H_ | 9 #ifndef WEBKIT_GLUE_WEBDROPDATA_H_ |
| 10 #define WEBKIT_GLUE_WEBDROPDATA_H_ | 10 #define WEBKIT_GLUE_WEBDROPDATA_H_ |
| 11 | 11 |
| 12 #include <map> | 12 #include <map> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/nullable_string16.h" |
| 16 #include "base/string16.h" | 17 #include "base/string16.h" |
| 17 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
| 18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebReferrerP
olicy.h" | 19 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebReferrerP
olicy.h" |
| 19 #include "webkit/glue/webkit_glue_export.h" | 20 #include "webkit/glue/webkit_glue_export.h" |
| 20 | 21 |
| 21 struct IDataObject; | 22 struct IDataObject; |
| 22 | 23 |
| 23 namespace WebKit { | 24 namespace WebKit { |
| 24 class WebDragData; | 25 class WebDragData; |
| 25 } | 26 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 54 // a download. | 55 // a download. |
| 55 WebKit::WebReferrerPolicy referrer_policy; | 56 WebKit::WebReferrerPolicy referrer_policy; |
| 56 | 57 |
| 57 // User is dropping one or more files on the webview. | 58 // User is dropping one or more files on the webview. |
| 58 std::vector<FileInfo> filenames; | 59 std::vector<FileInfo> filenames; |
| 59 | 60 |
| 60 // Isolated filesystem ID for the files being dragged on the webview. | 61 // Isolated filesystem ID for the files being dragged on the webview. |
| 61 string16 filesystem_id; | 62 string16 filesystem_id; |
| 62 | 63 |
| 63 // User is dragging plain text into the webview. | 64 // User is dragging plain text into the webview. |
| 64 string16 plain_text; | 65 NullableString16 text; |
| 65 | 66 |
| 66 // User is dragging text/html into the webview (e.g., out of Firefox). | 67 // User is dragging text/html into the webview (e.g., out of Firefox). |
| 67 // |html_base_url| is the URL that the html fragment is taken from (used to | 68 // |html_base_url| is the URL that the html fragment is taken from (used to |
| 68 // resolve relative links). It's ok for |html_base_url| to be empty. | 69 // resolve relative links). It's ok for |html_base_url| to be empty. |
| 69 string16 text_html; | 70 NullableString16 html; |
| 70 GURL html_base_url; | 71 GURL html_base_url; |
| 71 | 72 |
| 72 // User is dragging data from the webview (e.g., an image). | 73 // User is dragging data from the webview (e.g., an image). |
| 73 string16 file_description_filename; | 74 string16 file_description_filename; |
| 74 std::string file_contents; | 75 std::string file_contents; |
| 75 | 76 |
| 76 std::map<string16, string16> custom_data; | 77 std::map<string16, string16> custom_data; |
| 77 | 78 |
| 78 // Convert to a WebDragData object. | 79 // Convert to a WebDragData object. |
| 79 WebKit::WebDragData ToDragData() const; | 80 WebKit::WebDragData ToDragData() const; |
| 80 | 81 |
| 81 // Helper method for converting Window's specific IDataObject to a WebDropData | 82 // Helper method for converting Window's specific IDataObject to a WebDropData |
| 82 // object. TODO(tc): Move this to the browser side since it's Windows | 83 // object. TODO(tc): Move this to the browser side since it's Windows |
| 83 // specific and no longer used in webkit. | 84 // specific and no longer used in webkit. |
| 84 static void PopulateWebDropData(IDataObject* data_object, | 85 static void PopulateWebDropData(IDataObject* data_object, |
| 85 WebDropData* drop_data); | 86 WebDropData* drop_data); |
| 86 }; | 87 }; |
| 87 | 88 |
| 88 #endif // WEBKIT_GLUE_WEBDROPDATA_H_ | 89 #endif // WEBKIT_GLUE_WEBDROPDATA_H_ |
| OLD | NEW |