| Index: chrome/browser/search/hotword_service_factory.h
|
| diff --git a/chrome/browser/search/hotword_service_factory.h b/chrome/browser/search/hotword_service_factory.h
|
| index a29aaeb5dfb4de707c04fd481c3aa24acbe15f8d..c07b6510819f0ea80dac27a8e23a048a786611a3 100644
|
| --- a/chrome/browser/search/hotword_service_factory.h
|
| +++ b/chrome/browser/search/hotword_service_factory.h
|
| @@ -37,7 +37,7 @@ class HotwordServiceFactory : public MediaCaptureDevicesDispatcher::Observer,
|
|
|
| // Overridden from MediaCaptureDevicesDispatcher::Observer
|
| virtual void OnUpdateAudioDevices(
|
| - const content::MediaStreamDevices& devices) OVERRIDE;
|
| + const content::MediaStreamDevices& devices) override;
|
|
|
| // This will kick off the monitor that calls OnUpdateAudioDevices when the
|
| // number of audio devices changes (or is initialized). It needs to be a
|
| @@ -55,9 +55,9 @@ class HotwordServiceFactory : public MediaCaptureDevicesDispatcher::Observer,
|
|
|
| // Overrides from BrowserContextKeyedServiceFactory:
|
| virtual void RegisterProfilePrefs(
|
| - user_prefs::PrefRegistrySyncable* registry) OVERRIDE;
|
| + user_prefs::PrefRegistrySyncable* registry) override;
|
| virtual KeyedService* BuildServiceInstanceFor(
|
| - content::BrowserContext* context) const OVERRIDE;
|
| + content::BrowserContext* context) const override;
|
|
|
| // Must be called from the UI thread since the instance of
|
| // MediaCaptureDevicesDispatcher can only be accessed on the UI thread.
|
|
|