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

Unified Diff: chrome/browser/sync/test/integration/sync_auth_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/sync_auth_test.cc
diff --git a/chrome/browser/sync/test/integration/sync_auth_test.cc b/chrome/browser/sync/test/integration/sync_auth_test.cc
index 6a12248f98a450bada69f432a8571579b6fc8d83..347a9b11983a3292de654148d83144f00e4b1973 100644
--- a/chrome/browser/sync/test/integration/sync_auth_test.cc
+++ b/chrome/browser/sync/test/integration/sync_auth_test.cc
@@ -50,14 +50,14 @@ const char kMalformedOAuth2Token[] = "{ \"foo\": ";
class TestForAuthError : public SingleClientStatusChangeChecker {
public:
- explicit TestForAuthError(ProfileSyncService* service);
+ explicit TestForAuthError(browser_sync::ProfileSyncService* service);
~TestForAuthError() override;
bool IsExitConditionSatisfied() override;
std::string GetDebugMessage() const override;
};
-TestForAuthError::TestForAuthError(ProfileSyncService* service)
- : SingleClientStatusChangeChecker(service) {}
+TestForAuthError::TestForAuthError(browser_sync::ProfileSyncService* service)
+ : SingleClientStatusChangeChecker(service) {}
TestForAuthError::~TestForAuthError() {}

Powered by Google App Engine
This is Rietveld 408576698