| Index: chrome/browser/devtools/devtools_protocol.h
|
| diff --git a/chrome/browser/devtools/devtools_protocol.h b/chrome/browser/devtools/devtools_protocol.h
|
| index 68b09f2f25417353e9194fef2d943bc72c90f380..de85a34c2e44e0033d3ee89cf2856054302bce2c 100644
|
| --- a/chrome/browser/devtools/devtools_protocol.h
|
| +++ b/chrome/browser/devtools/devtools_protocol.h
|
| @@ -38,7 +38,7 @@ class DevToolsProtocol {
|
| class Command : public Message {
|
| public:
|
| Command(int id, const std::string& method, base::DictionaryValue* params);
|
| - virtual ~Command();
|
| + ~Command() override;
|
|
|
| int id() { return id_; }
|
| std::string Serialize();
|
| @@ -80,7 +80,7 @@ class DevToolsProtocol {
|
|
|
| class Notification : public Message {
|
| public:
|
| - virtual ~Notification();
|
| + ~Notification() override;
|
|
|
| private:
|
| friend class DevToolsProtocol;
|
|
|