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

Unified Diff: webkit/glue/web_intent_data.cc

Issue 9651020: Pass content-type resources to web intents. Goes through download, then invokes the p… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move dispatch logic client-side. Created 8 years, 9 months 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
Index: webkit/glue/web_intent_data.cc
diff --git a/webkit/glue/web_intent_data.cc b/webkit/glue/web_intent_data.cc
index 7b3406a3e329cfe7cee7614ac11d1d9f57a4cc73..1c569c029d31a453651cd79026a7685f6ac9f23f 100644
--- a/webkit/glue/web_intent_data.cc
+++ b/webkit/glue/web_intent_data.cc
@@ -17,7 +17,30 @@ WebIntentData::~WebIntentData() {
WebIntentData::WebIntentData(const WebKit::WebIntent& intent)
: action(intent.action()),
type(intent.type()),
- data(intent.data()) {
+ data(intent.data()),
+ blob_length(0),
+ data_type(SERIALIZED) {
+}
+
+WebIntentData::WebIntentData(const string16& action_in,
+ const string16& type_in,
+ const string16& unserialized_data_in)
+ : action(action_in),
+ type(type_in),
+ unserialized_data(unserialized_data_in),
+ blob_length(0),
+ data_type(UNSERIALIZED) {
+}
+
+WebIntentData::WebIntentData(const string16& action_in,
+ const string16& type_in,
+ const std::string& blob_file_in,
+ int64 blob_length_in)
+ : action(action_in),
+ type(type_in),
+ blob_file(blob_file_in),
+ blob_length(blob_length_in),
+ data_type(BLOB) {
}
} // namespace webkit_glue
« content/browser/renderer_host/buffered_resource_handler.cc ('K') | « webkit/glue/web_intent_data.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698