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

Side by Side Diff: chrome/browser/ui/autofill/autofill_popup_controller_impl.h

Issue 12223106: Properly Remove Autofill Keyboard Listener. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove inform_delegate_of_of_destruction 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_CONTROLLER_IMPL_H_ 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_CONTROLLER_IMPL_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_CONTROLLER_IMPL_H_ 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_CONTROLLER_IMPL_H_
7 7
8 #include "base/gtest_prod_util.h" 8 #include "base/gtest_prod_util.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "base/string16.h" 10 #include "base/string16.h"
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 // The line that is currently selected by the user. 203 // The line that is currently selected by the user.
204 // |kNoSelection| indicates that no line is currently selected. 204 // |kNoSelection| indicates that no line is currently selected.
205 int selected_line_; 205 int selected_line_;
206 206
207 // Used to indicate if the delete icon within a row is currently selected. 207 // Used to indicate if the delete icon within a row is currently selected.
208 bool delete_icon_hovered_; 208 bool delete_icon_hovered_;
209 209
210 // True if |HideInternal| has already been called. 210 // True if |HideInternal| has already been called.
211 bool is_hiding_; 211 bool is_hiding_;
212 212
213 // True if the delegate should be informed when |this| is destroyed.
214 bool inform_delegate_of_destruction_;
215
216 base::WeakPtrFactory<AutofillPopupControllerImpl> weak_ptr_factory_; 213 base::WeakPtrFactory<AutofillPopupControllerImpl> weak_ptr_factory_;
217 }; 214 };
218 215
219 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_CONTROLLER_IMPL_H_ 216 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_CONTROLLER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698