| Index: chrome/browser/extensions/api/tab_capture/tab_capture_api.h
|
| diff --git a/chrome/browser/extensions/api/tab_capture/tab_capture_api.h b/chrome/browser/extensions/api/tab_capture/tab_capture_api.h
|
| index a13f1bb8f879e3ffddd1758fb0b03a7535a9ef24..2b0aea1964887d622601f958e1bac5272dffc3cc 100644
|
| --- a/chrome/browser/extensions/api/tab_capture/tab_capture_api.h
|
| +++ b/chrome/browser/extensions/api/tab_capture/tab_capture_api.h
|
| @@ -19,10 +19,10 @@ class TabCaptureCaptureFunction : public ChromeSyncExtensionFunction {
|
| DECLARE_EXTENSION_FUNCTION("tabCapture.capture", TABCAPTURE_CAPTURE)
|
|
|
| protected:
|
| - virtual ~TabCaptureCaptureFunction() {}
|
| + ~TabCaptureCaptureFunction() override {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunSync() override;
|
| + bool RunSync() override;
|
| };
|
|
|
| class TabCaptureGetCapturedTabsFunction : public ChromeSyncExtensionFunction {
|
| @@ -31,10 +31,10 @@ class TabCaptureGetCapturedTabsFunction : public ChromeSyncExtensionFunction {
|
| TABCAPTURE_GETCAPTUREDTABS)
|
|
|
| protected:
|
| - virtual ~TabCaptureGetCapturedTabsFunction() {}
|
| + ~TabCaptureGetCapturedTabsFunction() override {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunSync() override;
|
| + bool RunSync() override;
|
| };
|
|
|
| } // namespace extensions
|
|
|