| 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 4dcc8d29b80600b944746da672a4797dec065a7f..9582049aa6e2236d7a8af526665c1ef9b1822a9c 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 syncer::SyncErrorController::Observer,
 | 
| +class SyncErrorNotifier : public SyncErrorController::Observer,
 | 
|                            public KeyedService {
 | 
|   public:
 | 
| -  SyncErrorNotifier(syncer::SyncErrorController* controller, Profile* profile);
 | 
| +  SyncErrorNotifier(SyncErrorController* controller, Profile* profile);
 | 
|    ~SyncErrorNotifier() override;
 | 
|  
 | 
|    // KeyedService:
 | 
|    void Shutdown() override;
 | 
|  
 | 
| -  // syncer::SyncErrorController::Observer:
 | 
| +  // SyncErrorController::Observer:
 | 
|    void OnErrorChanged() override;
 | 
|  
 | 
|   private:
 | 
|    // The error controller to query for error details.
 | 
| -  syncer::SyncErrorController* error_controller_;
 | 
| +  SyncErrorController* error_controller_;
 | 
|  
 | 
|    // The Profile this service belongs to.
 | 
|    Profile* profile_;
 | 
| 
 |