| Index: chrome/browser/speech/chrome_speech_recognition_manager_delegate.cc
|
| diff --git a/chrome/browser/speech/chrome_speech_recognition_manager_delegate.cc b/chrome/browser/speech/chrome_speech_recognition_manager_delegate.cc
|
| index d83d1f0ee565d4de44419a2edc00f331330a1f1b..267b9d2938f4f0d0aa44c008603912cd37f16e6b 100644
|
| --- a/chrome/browser/speech/chrome_speech_recognition_manager_delegate.cc
|
| +++ b/chrome/browser/speech/chrome_speech_recognition_manager_delegate.cc
|
| @@ -188,9 +188,9 @@ class ChromeSpeechRecognitionManagerDelegate::TabWatcher
|
| }
|
|
|
| // content::NotificationObserver implementation.
|
| - virtual void Observe(int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override {
|
| + void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| DCHECK(type == content::NOTIFICATION_WEB_CONTENTS_DISCONNECTED ||
|
| type == content::NOTIFICATION_RENDER_VIEW_HOST_CHANGED);
|
| @@ -230,7 +230,7 @@ class ChromeSpeechRecognitionManagerDelegate::TabWatcher
|
|
|
| friend class base::RefCountedThreadSafe<TabWatcher>;
|
|
|
| - virtual ~TabWatcher() {
|
| + ~TabWatcher() override {
|
| // Must be destroyed on the UI thread due to |registrar_| non thread-safety.
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| }
|
|
|