| Index: extensions/browser/guest_view/app_view/app_view_guest.h | 
| diff --git a/extensions/browser/guest_view/app_view/app_view_guest.h b/extensions/browser/guest_view/app_view/app_view_guest.h | 
| index 0cd18bc1729a057ad21bd6dd86e3fbcea2994a9a..c06542ea7db71615b80dee8c0a0f124e3cb6b215 100644 | 
| --- a/extensions/browser/guest_view/app_view/app_view_guest.h | 
| +++ b/extensions/browser/guest_view/app_view/app_view_guest.h | 
| @@ -35,27 +35,27 @@ class AppViewGuest : public GuestView<AppViewGuest>, | 
| int guest_instance_id); | 
|  | 
| // ExtensionFunctionDispatcher::Delegate implementation. | 
| -  virtual WindowController* GetExtensionWindowController() const OVERRIDE; | 
| -  virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE; | 
| +  virtual WindowController* GetExtensionWindowController() const override; | 
| +  virtual content::WebContents* GetAssociatedWebContents() const override; | 
|  | 
| // content::WebContentsObserver implementation. | 
| -  virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 
| +  virtual bool OnMessageReceived(const IPC::Message& message) override; | 
|  | 
| // content::WebContentsDelegate implementation. | 
| virtual bool HandleContextMenu( | 
| -      const content::ContextMenuParams& params) OVERRIDE; | 
| +      const content::ContextMenuParams& params) override; | 
|  | 
| // GuestViewBase implementation. | 
| -  virtual const char* GetAPINamespace() const OVERRIDE; | 
| -  virtual int GetTaskPrefix() const OVERRIDE; | 
| +  virtual const char* GetAPINamespace() const override; | 
| +  virtual int GetTaskPrefix() const override; | 
| virtual void CreateWebContents( | 
| const std::string& embedder_extension_id, | 
| int embedder_render_process_id, | 
| const GURL& embedder_site_url, | 
| const base::DictionaryValue& create_params, | 
| -      const WebContentsCreatedCallback& callback) OVERRIDE; | 
| -  virtual void DidAttachToEmbedder() OVERRIDE; | 
| -  virtual void DidInitialize() OVERRIDE; | 
| +      const WebContentsCreatedCallback& callback) override; | 
| +  virtual void DidAttachToEmbedder() override; | 
| +  virtual void DidInitialize() override; | 
|  | 
| private: | 
| AppViewGuest(content::BrowserContext* browser_context, int guest_instance_id); | 
|  |