Chromium Code Reviews| Index: chrome/browser/ui/autofill/autofill_popup_controller.h |
| diff --git a/chrome/browser/ui/autofill/autofill_popup_controller.h b/chrome/browser/ui/autofill/autofill_popup_controller.h |
| index d680082a258d599b6b305b607edbc7826a622baf..4c621ae5669fedaf273fc7e7a5e0405065f8751f 100644 |
| --- a/chrome/browser/ui/autofill/autofill_popup_controller.h |
| +++ b/chrome/browser/ui/autofill/autofill_popup_controller.h |
| @@ -21,6 +21,9 @@ class RectF; |
| // This interface provides data to an AutofillPopupView. |
| class AutofillPopupController { |
| public: |
| + // Called when the popup should get hidden. |
| + virtual void Hide() = 0; |
| + |
| // Called when the view is going down. |
| virtual void ViewDestroyed() = 0; |
|
Ilya Sherman
2013/02/22 00:29:04
Is this method still necessary? If so, I don't re
csharp
2013/02/22 15:41:31
Removed, all hiding/deleting is now done through t
Ilya Sherman
2013/02/23 00:02:36
So, the view is owned by its parent view. What ha
csharp
2013/02/25 20:29:29
The views aren't really owned by the parent, they
Ilya Sherman
2013/02/26 01:02:32
So, let's zoom in on the second Views case: Suppos
csharp
2013/02/26 18:33:31
That second view case doesn't actually happen anym
Ilya Sherman
2013/02/26 23:50:34
Ok.
csharp
2013/02/27 18:18:13
Done.
|