Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5017)

Unified Diff: chrome/browser/ui/autofill/autofill_popup_controller.h

Issue 12302034: Always Close the Autofill UI through the same path (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Adding Tests Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698