Chromium Code Reviews| Index: webkit/glue/web_intent_data.h |
| diff --git a/webkit/glue/web_intent_data.h b/webkit/glue/web_intent_data.h |
| index 540cd159a30eae7c275757d45218c92e948f1add..1eaf9e14ae620471c7286b6208f405006c34096d 100644 |
| --- a/webkit/glue/web_intent_data.h |
| +++ b/webkit/glue/web_intent_data.h |
| @@ -24,8 +24,20 @@ struct WEBKIT_GLUE_EXPORT WebIntentData { |
| // SerializedScriptObject. |
| string16 data; |
| + // String payload data. |
| + string16 unserialized_data; |
| + |
| + enum DataType { |
| + SERIALIZED = 0, |
|
James Hawkins
2012/03/13 00:59:02
Document DataType and the values.
Greg Billock
2012/03/13 17:42:38
Done.
|
| + UNSERIALIZED = 1 |
| + }; |
| + DataType data_type; |
| + |
| WebIntentData(); |
| WebIntentData(const WebKit::WebIntent& intent); |
| + WebIntentData(const string16& action_in, |
| + const string16& type_in, |
| + const string16& unserialized_data_in); |
| ~WebIntentData(); |
| }; |