| Index: chrome/browser/sync/sync_error_notifier_ash.h
|
| diff --git a/chrome/browser/sync/sync_error_notifier_ash.h b/chrome/browser/sync/sync_error_notifier_ash.h
|
| index 9582049aa6e2236d7a8af526665c1ef9b1822a9c..4dcc8d29b80600b944746da672a4797dec065a7f 100644
|
| --- a/chrome/browser/sync/sync_error_notifier_ash.h
|
| +++ b/chrome/browser/sync/sync_error_notifier_ash.h
|
| @@ -16,21 +16,21 @@
|
| class Profile;
|
|
|
| // Shows sync-related errors as notifications in Ash.
|
| -class SyncErrorNotifier : public SyncErrorController::Observer,
|
| +class SyncErrorNotifier : public syncer::SyncErrorController::Observer,
|
| public KeyedService {
|
| public:
|
| - SyncErrorNotifier(SyncErrorController* controller, Profile* profile);
|
| + SyncErrorNotifier(syncer::SyncErrorController* controller, Profile* profile);
|
| ~SyncErrorNotifier() override;
|
|
|
| // KeyedService:
|
| void Shutdown() override;
|
|
|
| - // SyncErrorController::Observer:
|
| + // syncer::SyncErrorController::Observer:
|
| void OnErrorChanged() override;
|
|
|
| private:
|
| // The error controller to query for error details.
|
| - SyncErrorController* error_controller_;
|
| + syncer::SyncErrorController* error_controller_;
|
|
|
| // The Profile this service belongs to.
|
| Profile* profile_;
|
|
|