| Index: chrome/browser/ui/intents/web_intent_picker_controller_unittest.cc
|
| diff --git a/chrome/browser/ui/intents/web_intent_picker_controller_unittest.cc b/chrome/browser/ui/intents/web_intent_picker_controller_unittest.cc
|
| index ac487be994674a99e098caebbc77f1d178592312..33d9676009c452734774b6ab0abbe687c8d8b2ef 100644
|
| --- a/chrome/browser/ui/intents/web_intent_picker_controller_unittest.cc
|
| +++ b/chrome/browser/ui/intents/web_intent_picker_controller_unittest.cc
|
| @@ -148,11 +148,11 @@ class WebIntentPickerControllerTest : public TabContentsWrapperTestHarness {
|
| protected:
|
| void AddWebIntentService(const string16& action,
|
| const GURL& service_url) {
|
| - WebIntentServiceData web_intent_service_data;
|
| - web_intent_service_data.action = action;
|
| - web_intent_service_data.type = kType;
|
| - web_intent_service_data.service_url = service_url;
|
| - web_data_service_->AddWebIntent(web_intent_service_data);
|
| + webkit_glue::WebIntentServiceData service;
|
| + service.action = action;
|
| + service.type = kType;
|
| + service.service_url = service_url;
|
| + web_data_service_->AddWebIntent(service);
|
| }
|
|
|
| void AddFaviconForURL(const GURL& url) {
|
|
|