| 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..80577318e4bdf98e8ce2033ea88c72b6806a5a06 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;
|
| virtual void UpdateBoundsAndRedrawPopup() OVERRIDE;
|
| virtual void MouseHovered(int x, int y) OVERRIDE;
|
| virtual void MouseClicked(int x, int y) OVERRIDE;
|
| @@ -203,9 +202,6 @@ class AutofillPopupControllerImpl : public AutofillPopupController,
|
| // Used to indicate if the delete icon within a row is currently selected.
|
| bool delete_icon_hovered_;
|
|
|
| - // True if |HideInternal| has already been called.
|
| - bool is_hiding_;
|
| -
|
| base::WeakPtrFactory<AutofillPopupControllerImpl> weak_ptr_factory_;
|
| };
|
|
|
|
|