| Index: content/browser/media/webrtc_internals.h
|
| diff --git a/content/browser/media/webrtc_internals.h b/content/browser/media/webrtc_internals.h
|
| index 861dd0cf391fa4bd30395ddb5519203c474842e3..db8693ab3eb2436af4302b31b51f04eaca464753 100644
|
| --- a/content/browser/media/webrtc_internals.h
|
| +++ b/content/browser/media/webrtc_internals.h
|
| @@ -111,20 +111,20 @@ class CONTENT_EXPORT WebRTCInternals : public NotificationObserver,
|
| AecRecordingFileSelectionCanceled);
|
|
|
| WebRTCInternals();
|
| - virtual ~WebRTCInternals();
|
| + ~WebRTCInternals() override;
|
|
|
| void SendUpdate(const std::string& command, base::Value* value);
|
|
|
| // NotificationObserver implementation.
|
| - virtual void Observe(int type,
|
| - const NotificationSource& source,
|
| - const NotificationDetails& details) override;
|
| + void Observe(int type,
|
| + const NotificationSource& source,
|
| + const NotificationDetails& details) override;
|
|
|
| // ui::SelectFileDialog::Listener implementation.
|
| - virtual void FileSelected(const base::FilePath& path,
|
| - int index,
|
| - void* unused_params) override;
|
| - virtual void FileSelectionCanceled(void* params) override;
|
| + void FileSelected(const base::FilePath& path,
|
| + int index,
|
| + void* unused_params) override;
|
| + void FileSelectionCanceled(void* params) override;
|
|
|
| // Called when a renderer exits (including crashes).
|
| void OnRendererExit(int render_process_id);
|
|
|