Chromium Code Reviews| Index: chrome/browser/ui/autofill/autofill_popup_controller_impl.h |
| diff --git a/chrome/browser/ui/autofill/autofill_popup_controller_impl.h b/chrome/browser/ui/autofill/autofill_popup_controller_impl.h |
| index e16ac31ba6708b831db9ae77f0e8adfbba06cf39..87992f8cd6525237d56d1b4b98ac75979a2df645 100644 |
| --- a/chrome/browser/ui/autofill/autofill_popup_controller_impl.h |
| +++ b/chrome/browser/ui/autofill/autofill_popup_controller_impl.h |
| @@ -47,8 +47,8 @@ class AutofillPopupControllerImpl : public AutofillPopupController, |
| const std::vector<int>& identifiers); |
| // Hides the popup and destroys the controller. This also invalidates |
| - // |delegate_|. Virtual for testing. |
| - virtual void Hide(); |
| + // |delegate_|. |
| + virtual void Hide() OVERRIDE; |
| // KeyboardListener implementation. |
| virtual bool HandleKeyPressEvent( |
| @@ -64,7 +64,6 @@ class AutofillPopupControllerImpl : public AutofillPopupController, |
| virtual ~AutofillPopupControllerImpl(); |
| // AutofillPopupController implementation. |
| - virtual void ViewDestroyed() OVERRIDE; |
|
Ilya Sherman
2013/02/26 01:02:32
You'll need to update the Mac code not to call thi
csharp
2013/02/26 18:33:31
Done. (Just removed the call, not sure if the mac
|
| virtual void UpdateBoundsAndRedrawPopup() OVERRIDE; |
| virtual void MouseHovered(int x, int y) OVERRIDE; |
| virtual void MouseClicked(int x, int y) OVERRIDE; |