| Index: content/browser/devtools/devtools_protocol.h
|
| diff --git a/content/browser/devtools/devtools_protocol.h b/content/browser/devtools/devtools_protocol.h
|
| index cbc075b37157db00260f4fdd8b309e4d4ae5a089..67eb9797435d6af80a02e89a2c770d15a961b0f0 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;
|
| + virtual std::string Serialize() override;
|
|
|
| // Creates success response. Takes ownership of |result|.
|
| scoped_refptr<Response> SuccessResponse(base::DictionaryValue* result);
|
| @@ -110,7 +110,7 @@ class DevToolsProtocol {
|
| class Notification : public Message {
|
| public:
|
|
|
| - virtual std::string Serialize() OVERRIDE;
|
| + virtual std::string Serialize() override;
|
|
|
| private:
|
| friend class DevToolsProtocol;
|
|
|