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

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

Issue 2354613002: [Sync] Fix namespaces for the browser_sync component. (Closed)
Patch Set: Address comments. 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/test/integration/two_client_passwords_sync_test.cc
diff --git a/chrome/browser/sync/test/integration/two_client_passwords_sync_test.cc b/chrome/browser/sync/test/integration/two_client_passwords_sync_test.cc
index a2c1b911988447be7a2e4ed8f770c9dcef5ab46c..aebe553e77e77d422ccb70e1f48e46c2bcdf8b1b 100644
--- a/chrome/browser/sync/test/integration/two_client_passwords_sync_test.cc
+++ b/chrome/browser/sync/test/integration/two_client_passwords_sync_test.cc
@@ -83,7 +83,8 @@ IN_PROC_BROWSER_TEST_F(TwoClientPasswordsSyncTest,
E2E_ENABLED(SetPassphraseAndAddPassword)) {
ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
- SetEncryptionPassphrase(0, kValidPassphrase, ProfileSyncService::EXPLICIT);
+ SetEncryptionPassphrase(0, kValidPassphrase,
+ browser_sync::ProfileSyncService::EXPLICIT);
ASSERT_TRUE(AwaitPassphraseAccepted(GetSyncService((0))));
ASSERT_TRUE(AwaitPassphraseRequired(GetSyncService((1))));
@@ -148,7 +149,8 @@ IN_PROC_BROWSER_TEST_F(TwoClientPasswordsSyncTest,
ASSERT_TRUE(SetupClients());
ASSERT_TRUE(GetClient(0)->SetupSync());
- SetEncryptionPassphrase(0, kValidPassphrase, ProfileSyncService::EXPLICIT);
+ SetEncryptionPassphrase(0, kValidPassphrase,
+ browser_sync::ProfileSyncService::EXPLICIT);
ASSERT_TRUE(AwaitPassphraseAccepted(GetSyncService(0)));
// When client 1 hits a passphrase required state, we can infer that

Powered by Google App Engine
This is Rietveld 408576698