OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |