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

Unified Diff: components/autofill/core/browser/webdata/autocomplete_syncable_service.h

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: components/autofill/core/browser/webdata/autocomplete_syncable_service.h
diff --git a/components/autofill/core/browser/webdata/autocomplete_syncable_service.h b/components/autofill/core/browser/webdata/autocomplete_syncable_service.h
index 0cb5538ed237e65f442dfbc05067bb27260b8493..8f5949ca664e71f2aaa57ed9521b5a454fb68e84 100644
--- a/components/autofill/core/browser/webdata/autocomplete_syncable_service.h
+++ b/components/autofill/core/browser/webdata/autocomplete_syncable_service.h
@@ -25,16 +25,18 @@
#include "components/sync/api/sync_error.h"
#include "components/sync/api/syncable_service.h"
+namespace browser_sync {
class FakeServerUpdater;
class ProfileSyncServiceAutofillTest;
+} // namespace browser_sync
namespace syncer {
class SyncErrorFactory;
-}
+} // namespace syncer
namespace sync_pb {
class AutofillSpecifics;
-}
+} // namespace sync_pb
namespace autofill {
@@ -98,8 +100,8 @@ class AutocompleteSyncableService
virtual bool SaveChangesToWebData(const std::vector<AutofillEntry>& entries);
private:
- friend class ::FakeServerUpdater;
- friend class ::ProfileSyncServiceAutofillTest;
+ friend class browser_sync::FakeServerUpdater;
+ friend class browser_sync::ProfileSyncServiceAutofillTest;
// This is a helper map used only in Merge/Process* functions. The lifetime
// of the iterator is longer than the map object. The bool in the pair is used

Powered by Google App Engine
This is Rietveld 408576698