Index: chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc |
diff --git a/chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc b/chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc |
index 6702c1282941d230b7c8b96088e556adc38fce45..07959fb1a70d639df6a2e637c3dbe8c0db86d623 100644 |
--- a/chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc |
+++ b/chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc |
@@ -63,11 +63,11 @@ class WebIntentPickerControllerBrowserTest : public InProcessBrowserTest { |
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 SetPickerExpectations(int expected_service_count, |