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

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

Issue 2345843003: [Sync] Merge //components/browser_sync into one directory. (Closed)
Patch Set: Address comment + rebase. Created 4 years, 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/macros.h" 5 #include "base/macros.h"
6 #include "base/run_loop.h" 6 #include "base/run_loop.h"
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "chrome/browser/sync/test/integration/bookmarks_helper.h" 8 #include "chrome/browser/sync/test/integration/bookmarks_helper.h"
9 #include "chrome/browser/sync/test/integration/passwords_helper.h" 9 #include "chrome/browser/sync/test/integration/passwords_helper.h"
10 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" 10 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
11 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h" 11 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h"
12 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h" 12 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h"
13 #include "chrome/browser/sync/test/integration/sync_test.h" 13 #include "chrome/browser/sync/test/integration/sync_test.h"
14 #include "chrome/common/pref_names.h" 14 #include "chrome/common/pref_names.h"
15 #include "components/browser_sync/browser/profile_sync_service.h" 15 #include "components/browser_sync/profile_sync_service.h"
16 #include "components/prefs/pref_member.h" 16 #include "components/prefs/pref_member.h"
17 #include "components/prefs/pref_service.h" 17 #include "components/prefs/pref_service.h"
18 #include "components/sync/protocol/sync_protocol_error.h" 18 #include "components/sync/protocol/sync_protocol_error.h"
19 #include "google_apis/gaia/google_service_auth_error.h" 19 #include "google_apis/gaia/google_service_auth_error.h"
20 20
21 using bookmarks::BookmarkNode; 21 using bookmarks::BookmarkNode;
22 using bookmarks_helper::AddFolder; 22 using bookmarks_helper::AddFolder;
23 using bookmarks_helper::SetTitle; 23 using bookmarks_helper::SetTitle;
24 using sync_integration_test_util::AwaitCommitActivityCompletion; 24 using sync_integration_test_util::AwaitCommitActivityCompletion;
25 25
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 ASSERT_TRUE(AwaitTypeDisabled(GetSyncService(0), syncer::TYPED_URLS)); 269 ASSERT_TRUE(AwaitTypeDisabled(GetSyncService(0), syncer::TYPED_URLS));
270 ASSERT_TRUE(AwaitTypeDisabled(GetSyncService(0), syncer::SESSIONS)); 270 ASSERT_TRUE(AwaitTypeDisabled(GetSyncService(0), syncer::SESSIONS));
271 271
272 const BookmarkNode* node1 = AddFolder(0, 0, "title1"); 272 const BookmarkNode* node1 = AddFolder(0, 0, "title1");
273 SetTitle(0, node1, "new_title1"); 273 SetTitle(0, node1, "new_title1");
274 ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService(0))); 274 ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService(0)));
275 // TODO(lipalani)" Verify initial sync ended for typed url is false. 275 // TODO(lipalani)" Verify initial sync ended for typed url is false.
276 } 276 }
277 277
278 } // namespace 278 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698