| 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..31d709095c5ddfc39d89d301685501043079b464 100644
|
| --- a/webkit/glue/web_intent_data.cc
|
| +++ b/webkit/glue/web_intent_data.cc
|
| @@ -8,7 +8,8 @@
|
|
|
| namespace webkit_glue {
|
|
|
| -WebIntentData::WebIntentData() {
|
| +WebIntentData::WebIntentData()
|
| + : data_type(SERIALIZED) {
|
| }
|
|
|
| WebIntentData::~WebIntentData() {
|
| @@ -17,7 +18,17 @@ WebIntentData::~WebIntentData() {
|
| WebIntentData::WebIntentData(const WebKit::WebIntent& intent)
|
| : action(intent.action()),
|
| type(intent.type()),
|
| - data(intent.data()) {
|
| + data(intent.data()),
|
| + 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),
|
| + data_type(UNSERIALIZED) {
|
| }
|
|
|
| } // namespace webkit_glue
|
|
|