| 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 9d82dbae359fbddd00e2c5d04ccbe8e874cf44ff..4aa3a20a6a82921cee0741f5ffb6847773ba8209 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) {
|
|
|