Chromium Code Reviews| 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..5c02019ad0e7a202969c8c30c702443c64cf2bfd 100644 |
| --- a/components/autofill/core/browser/webdata/autocomplete_syncable_service.h |
| +++ b/components/autofill/core/browser/webdata/autocomplete_syncable_service.h |
| @@ -25,8 +25,10 @@ |
| #include "components/sync/api/sync_error.h" |
| #include "components/sync/api/syncable_service.h" |
| +namespace browser_sync { |
| class FakeServerUpdater; |
| class ProfileSyncServiceAutofillTest; |
| +} |
|
skym
2016/09/22 17:25:59
Closing namespaces.
maxbogue
2016/09/22 19:41:15
Done.
|
| namespace syncer { |
| class SyncErrorFactory; |
| @@ -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 |