| Index: chrome/browser/ui/webui/app_launcher_page_ui.h
|
| diff --git a/chrome/browser/ui/webui/app_launcher_page_ui.h b/chrome/browser/ui/webui/app_launcher_page_ui.h
|
| index b21b363c4370b58a177937537bb41a611d0cde21..4b6310e93c1ea8f43c591f3caa7d51811d230e8b 100644
|
| --- a/chrome/browser/ui/webui/app_launcher_page_ui.h
|
| +++ b/chrome/browser/ui/webui/app_launcher_page_ui.h
|
| @@ -31,15 +31,15 @@ class AppLauncherPageUI : public content::WebUIController {
|
| virtual ~HTMLSource();
|
|
|
| // content::URLDataSource implementation.
|
| - virtual std::string GetSource() const OVERRIDE;
|
| + virtual std::string GetSource() const override;
|
| virtual void StartDataRequest(
|
| const std::string& path,
|
| int render_process_id,
|
| int render_frame_id,
|
| - const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
|
| - virtual std::string GetMimeType(const std::string&) const OVERRIDE;
|
| - virtual bool ShouldReplaceExistingSource() const OVERRIDE;
|
| - virtual bool ShouldAddContentSecurityPolicy() const OVERRIDE;
|
| + const content::URLDataSource::GotDataCallback& callback) override;
|
| + virtual std::string GetMimeType(const std::string&) const override;
|
| + virtual bool ShouldReplaceExistingSource() const override;
|
| + virtual bool ShouldAddContentSecurityPolicy() const override;
|
|
|
| private:
|
|
|
|
|