Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(922)

Unified Diff: chrome/browser/ui/intents/web_intent_picker_controller_browsertest.cc

Issue 8417043: Add webkit_glue namespace. Improve some variable and test names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge error Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698