OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef IOS_CHROME_BROWSER_PASSWORDS_UPDATE_PASSWORD_INFOBAR_CONTROLLER_H_ | |
6 #define IOS_CHROME_BROWSER_PASSWORDS_UPDATE_PASSWORD_INFOBAR_CONTROLLER_H_ | |
7 | |
8 #include "ios/chrome/browser/infobars/confirm_infobar_controller.h" | |
9 | |
10 class IOSChromeUpdatePasswordInfoBarDelegate; | |
11 | |
12 // Controller for the Update Password info bar. Presents an info bar that asks | |
13 // the user whether they want to update their password. | |
14 @interface UpdatePasswordInfoBarController : ConfirmInfoBarController | |
15 | |
16 - (base::scoped_nsobject<UIView<InfoBarViewProtocol>>) | |
marq (ping after 24h)
2016/06/30 16:17:38
This should just return an autoreleased pointer to
Jackie Quinn
2016/07/01 12:01:58
Yup this is done by the base InfoBarController cla
| |
17 viewForDelegate:(IOSChromeUpdatePasswordInfoBarDelegate*)delegate | |
18 frame:(CGRect)frame; | |
19 | |
20 @end | |
21 | |
22 #endif // IOS_CHROME_BROWSER_PASSWORDS_UPDATE_PASSWORD_INFOBAR_CONTROLLER_H_ | |
OLD | NEW |