Index: ios/chrome/browser/passwords/update_password_infobar_controller.h |
diff --git a/ios/chrome/browser/passwords/update_password_infobar_controller.h b/ios/chrome/browser/passwords/update_password_infobar_controller.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4ab9fafbc60c6a11ad3395a85da42b482478dc2a |
--- /dev/null |
+++ b/ios/chrome/browser/passwords/update_password_infobar_controller.h |
@@ -0,0 +1,22 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef IOS_CHROME_BROWSER_PASSWORDS_UPDATE_PASSWORD_INFOBAR_CONTROLLER_H_ |
+#define IOS_CHROME_BROWSER_PASSWORDS_UPDATE_PASSWORD_INFOBAR_CONTROLLER_H_ |
+ |
+#include "ios/chrome/browser/infobars/confirm_infobar_controller.h" |
+ |
+class IOSChromeUpdatePasswordInfoBarDelegate; |
+ |
+// Controller for the Update Password info bar. Presents an info bar that asks |
+// the user whether they want to update their password. |
+@interface UpdatePasswordInfoBarController : ConfirmInfoBarController |
+ |
+- (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
|
+viewForDelegate:(IOSChromeUpdatePasswordInfoBarDelegate*)delegate |
+ frame:(CGRect)frame; |
+ |
+@end |
+ |
+#endif // IOS_CHROME_BROWSER_PASSWORDS_UPDATE_PASSWORD_INFOBAR_CONTROLLER_H_ |