| Index: content/browser/devtools/devtools_protocol.h
|
| diff --git a/content/browser/devtools/devtools_protocol.h b/content/browser/devtools/devtools_protocol.h
|
| index 67eb9797435d6af80a02e89a2c770d15a961b0f0..512bfb7bb279ba91d32cae1751920bf1bd891026 100644
|
| --- a/content/browser/devtools/devtools_protocol.h
|
| +++ b/content/browser/devtools/devtools_protocol.h
|
| @@ -50,7 +50,7 @@ class DevToolsProtocol {
|
| public:
|
| int id() { return id_; }
|
|
|
| - virtual std::string Serialize() override;
|
| + std::string Serialize() override;
|
|
|
| // Creates success response. Takes ownership of |result|.
|
| scoped_refptr<Response> SuccessResponse(base::DictionaryValue* result);
|
| @@ -71,7 +71,7 @@ class DevToolsProtocol {
|
| scoped_refptr<Response> AsyncResponsePromise();
|
|
|
| protected:
|
| - virtual ~Command();
|
| + ~Command() override;
|
|
|
| private:
|
| friend class DevToolsProtocol;
|
| @@ -109,12 +109,11 @@ class DevToolsProtocol {
|
|
|
| class Notification : public Message {
|
| public:
|
| -
|
| - virtual std::string Serialize() override;
|
| + std::string Serialize() override;
|
|
|
| private:
|
| friend class DevToolsProtocol;
|
| - virtual ~Notification();
|
| + ~Notification() override;
|
|
|
| // Takes ownership of |params|.
|
| Notification(const std::string& method,
|
|
|