| 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 52120c8e72876808809aefab01a70c34bf7e92e0..d1d907c36ddcf5b4b2aaa1bda1dce4d1d260ac73 100644 | 
| --- a/chrome/browser/extensions/api/debugger/debugger_api.h | 
| +++ b/chrome/browser/extensions/api/debugger/debugger_api.h | 
| @@ -58,7 +58,7 @@ class DebuggerAttachFunction : public DebuggerFunction { | 
| virtual ~DebuggerAttachFunction(); | 
|  | 
| // ExtensionFunction: | 
| -  virtual bool RunAsync() OVERRIDE; | 
| +  virtual bool RunAsync() override; | 
| }; | 
|  | 
| // Implements the debugger.detach() extension function. | 
| @@ -72,7 +72,7 @@ class DebuggerDetachFunction : public DebuggerFunction { | 
| virtual ~DebuggerDetachFunction(); | 
|  | 
| // ExtensionFunction: | 
| -  virtual bool RunAsync() OVERRIDE; | 
| +  virtual bool RunAsync() override; | 
| }; | 
|  | 
| // Implements the debugger.sendCommand() extension function. | 
| @@ -87,7 +87,7 @@ class DebuggerSendCommandFunction : public DebuggerFunction { | 
| virtual ~DebuggerSendCommandFunction(); | 
|  | 
| // ExtensionFunction: | 
| -  virtual bool RunAsync() OVERRIDE; | 
| +  virtual bool RunAsync() override; | 
| }; | 
|  | 
| // Implements the debugger.getTargets() extension function. | 
| @@ -101,7 +101,7 @@ class DebuggerGetTargetsFunction : public DebuggerFunction { | 
| virtual ~DebuggerGetTargetsFunction(); | 
|  | 
| // ExtensionFunction: | 
| -  virtual bool RunAsync() OVERRIDE; | 
| +  virtual bool RunAsync() override; | 
|  | 
| private: | 
| void SendTargetList(const std::vector<DevToolsTargetImpl*>& target_list); | 
|  |