| Index: ui/keyboard/webui/vk_webui_controller.h
|
| diff --git a/ui/keyboard/webui/vk_webui_controller.h b/ui/keyboard/webui/vk_webui_controller.h
|
| index d701c6395e90d086ea0ab72d550e0416c9d2783a..97ee5a565d1cb2782b695789c15c922e2ffa7be8 100644
|
| --- a/ui/keyboard/webui/vk_webui_controller.h
|
| +++ b/ui/keyboard/webui/vk_webui_controller.h
|
| @@ -33,7 +33,7 @@ class VKWebUIController : public content::WebUIController {
|
| mojo::InterfaceRequest<KeyboardUIHandlerMojo> request);
|
|
|
| // content::WebUIController:
|
| - virtual void RenderViewCreated(content::RenderViewHost* host) OVERRIDE;
|
| + virtual void RenderViewCreated(content::RenderViewHost* host) override;
|
|
|
| scoped_ptr<VKMojoHandler> ui_handler_;
|
| base::WeakPtrFactory<VKWebUIController> weak_factory_;
|
| @@ -47,14 +47,14 @@ class KEYBOARD_EXPORT VKWebUIControllerFactory
|
| // WebUIControllerFactory:
|
| virtual content::WebUI::TypeID GetWebUIType(
|
| content::BrowserContext* browser_context,
|
| - const GURL& url) const OVERRIDE;
|
| + const GURL& url) const override;
|
| virtual bool UseWebUIForURL(content::BrowserContext* browser_context,
|
| - const GURL& url) const OVERRIDE;
|
| + const GURL& url) const override;
|
| virtual bool UseWebUIBindingsForURL(content::BrowserContext* browser_context,
|
| - const GURL& url) const OVERRIDE;
|
| + const GURL& url) const override;
|
| virtual content::WebUIController* CreateWebUIControllerForURL(
|
| content::WebUI* web_ui,
|
| - const GURL& url) const OVERRIDE;
|
| + const GURL& url) const override;
|
|
|
| static VKWebUIControllerFactory* GetInstance();
|
|
|
|
|