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

Side by Side Diff: chrome/browser/sync/test/integration/single_client_search_engines_sync_test.cc

Issue 10021008: Reland r131019: Move most TemplateURL data members to a new struct, TemplateURLData. This allows us… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/search_engines/template_url_service.h" 5 #include "chrome/browser/search_engines/template_url_service.h"
6 #include "chrome/browser/sync/profile_sync_service_harness.h" 6 #include "chrome/browser/sync/profile_sync_service_harness.h"
7 #include "chrome/browser/sync/test/integration/search_engines_helper.h" 7 #include "chrome/browser/sync/test/integration/search_engines_helper.h"
8 #include "chrome/browser/sync/test/integration/sync_test.h" 8 #include "chrome/browser/sync/test/integration/sync_test.h"
9 9
10 using search_engines_helper::AddSearchEngine;
11 using search_engines_helper::CreateTestTemplateURL;
12 using search_engines_helper::GetServiceForProfile;
13 using search_engines_helper::GetVerifierService;
14 using search_engines_helper::ServiceMatchesVerifier;
15
16 class SingleClientSearchEnginesSyncTest : public SyncTest { 10 class SingleClientSearchEnginesSyncTest : public SyncTest {
17 public: 11 public:
18 SingleClientSearchEnginesSyncTest() : SyncTest(SINGLE_CLIENT) {} 12 SingleClientSearchEnginesSyncTest() : SyncTest(SINGLE_CLIENT) {}
19 virtual ~SingleClientSearchEnginesSyncTest() {} 13 virtual ~SingleClientSearchEnginesSyncTest() {}
20 14
21 private: 15 private:
22 DISALLOW_COPY_AND_ASSIGN(SingleClientSearchEnginesSyncTest); 16 DISALLOW_COPY_AND_ASSIGN(SingleClientSearchEnginesSyncTest);
23 }; 17 };
24 18
25 IN_PROC_BROWSER_TEST_F(SingleClientSearchEnginesSyncTest, Sanity) { 19 IN_PROC_BROWSER_TEST_F(SingleClientSearchEnginesSyncTest, Sanity) {
26 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; 20 ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
27 ASSERT_TRUE(ServiceMatchesVerifier(0)); 21 ASSERT_TRUE(search_engines_helper::ServiceMatchesVerifier(0));
28 22
29 AddSearchEngine(0, 0); 23 search_engines_helper::AddSearchEngine(0, 0);
30 24
31 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion( 25 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion(
32 "Waiting for search engines to update.")); 26 "Waiting for search engines to update."));
33 ASSERT_TRUE(ServiceMatchesVerifier(0)); 27 ASSERT_TRUE(search_engines_helper::ServiceMatchesVerifier(0));
34 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698