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

Unified Diff: chrome/browser/sync/test/integration/two_client_search_engines_sync_test.cc

Issue 9968016: Move the URL string from TemplateURLRef onto the owning TemplateURL. This will make it easier to m… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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/sync/test/integration/two_client_search_engines_sync_test.cc
===================================================================
--- chrome/browser/sync/test/integration/two_client_search_engines_sync_test.cc (revision 129864)
+++ chrome/browser/sync/test/integration/two_client_search_engines_sync_test.cc (working copy)
@@ -153,10 +153,8 @@
const TemplateURL* turl = GetServiceForProfile(1)->GetTemplateURLForKeyword(
ASCIIToUTF16("test1"));
EXPECT_TRUE(turl);
- GetServiceForProfile(1)->ResetTemplateURL(turl,
- turl->short_name(),
- ASCIIToUTF16("test0"),
- turl->url()->url());
+ GetServiceForProfile(1)->ResetTemplateURL(turl, turl->short_name(),
+ ASCIIToUTF16("test0"), turl->url());
ASSERT_TRUE(AwaitQuiescence());
ASSERT_TRUE(AllServicesMatch());

Powered by Google App Engine
This is Rietveld 408576698