| Index: chrome/browser/extensions/api/debugger/debugger_api.h
|
| diff --git a/chrome/browser/extensions/api/debugger/debugger_api.h b/chrome/browser/extensions/api/debugger/debugger_api.h
|
| index d1d907c36ddcf5b4b2aaa1bda1dce4d1d260ac73..af2d98f1472288cbd9f89f987f05b4221d80c134 100644
|
| --- a/chrome/browser/extensions/api/debugger/debugger_api.h
|
| +++ b/chrome/browser/extensions/api/debugger/debugger_api.h
|
| @@ -35,7 +35,7 @@ class ExtensionDevToolsClientHost;
|
| class DebuggerFunction : public ChromeAsyncExtensionFunction {
|
| protected:
|
| DebuggerFunction();
|
| - virtual ~DebuggerFunction();
|
| + ~DebuggerFunction() override;
|
|
|
| void FormatErrorMessage(const std::string& format);
|
|
|
| @@ -55,10 +55,10 @@ class DebuggerAttachFunction : public DebuggerFunction {
|
| DebuggerAttachFunction();
|
|
|
| protected:
|
| - virtual ~DebuggerAttachFunction();
|
| + ~DebuggerAttachFunction() override;
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunAsync() override;
|
| + bool RunAsync() override;
|
| };
|
|
|
| // Implements the debugger.detach() extension function.
|
| @@ -69,10 +69,10 @@ class DebuggerDetachFunction : public DebuggerFunction {
|
| DebuggerDetachFunction();
|
|
|
| protected:
|
| - virtual ~DebuggerDetachFunction();
|
| + ~DebuggerDetachFunction() override;
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunAsync() override;
|
| + bool RunAsync() override;
|
| };
|
|
|
| // Implements the debugger.sendCommand() extension function.
|
| @@ -84,10 +84,10 @@ class DebuggerSendCommandFunction : public DebuggerFunction {
|
| void SendResponseBody(base::DictionaryValue* result);
|
|
|
| protected:
|
| - virtual ~DebuggerSendCommandFunction();
|
| + ~DebuggerSendCommandFunction() override;
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunAsync() override;
|
| + bool RunAsync() override;
|
| };
|
|
|
| // Implements the debugger.getTargets() extension function.
|
| @@ -98,10 +98,10 @@ class DebuggerGetTargetsFunction : public DebuggerFunction {
|
| DebuggerGetTargetsFunction();
|
|
|
| protected:
|
| - virtual ~DebuggerGetTargetsFunction();
|
| + ~DebuggerGetTargetsFunction() override;
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunAsync() override;
|
| + bool RunAsync() override;
|
|
|
| private:
|
| void SendTargetList(const std::vector<DevToolsTargetImpl*>& target_list);
|
|
|