| Index: chrome/browser/ui/webui/components_ui.h
|
| diff --git a/chrome/browser/ui/webui/components_ui.h b/chrome/browser/ui/webui/components_ui.h
|
| index 6f995a6bf5cf8e5cf481dfcdbcd5954cb582d7e5..d92279e4f83cf67c0d09935c382c58506b1f4919 100644
|
| --- a/chrome/browser/ui/webui/components_ui.h
|
| +++ b/chrome/browser/ui/webui/components_ui.h
|
| @@ -22,7 +22,7 @@ class ComponentsUI : public content::WebUIController,
|
| public component_updater::ServiceObserver {
|
| public:
|
| explicit ComponentsUI(content::WebUI* web_ui);
|
| - virtual ~ComponentsUI();
|
| + ~ComponentsUI() override;
|
|
|
| static void OnDemandUpdate(const std::string& component_id);
|
|
|
| @@ -32,7 +32,7 @@ class ComponentsUI : public content::WebUIController,
|
| ui::ScaleFactor scale_factor);
|
|
|
| // ServiceObserver implementation.
|
| - virtual void OnEvent(Events event, const std::string& id) override;
|
| + void OnEvent(Events event, const std::string& id) override;
|
|
|
| private:
|
| static base::string16 ComponentEventToString(Events event);
|
|
|