| Index: ash/ime/infolist_window.h
|
| diff --git a/ash/ime/infolist_window.h b/ash/ime/infolist_window.h
|
| index 345c1a1339cb84188fe2c1e8456342de492d170d..535f0251b0d35fc0a729cf323341bed0bf5d6b02 100644
|
| --- a/ash/ime/infolist_window.h
|
| +++ b/ash/ime/infolist_window.h
|
| @@ -26,7 +26,7 @@ class ASH_EXPORT InfolistWindow : public views::BubbleDelegateView {
|
| public:
|
| InfolistWindow(views::View* candidate_window,
|
| const std::vector<ui::InfolistEntry>& entries);
|
| - virtual ~InfolistWindow();
|
| + ~InfolistWindow() override;
|
| void InitWidget();
|
|
|
| // Updates infolist contents with |entries|.
|
| @@ -42,7 +42,7 @@ class ASH_EXPORT InfolistWindow : public views::BubbleDelegateView {
|
|
|
| private:
|
| // views::WidgetDelegate implementation.
|
| - virtual void WindowClosing() override;
|
| + void WindowClosing() override;
|
|
|
| // The list of visible entries. Owned by views hierarchy.
|
| std::vector<InfolistEntryView*> entry_views_;
|
|
|