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

Unified Diff: ios/chrome/browser/passwords/update_password_infobar_controller.h

Issue 2106413003: UpdatePasswordInfoBarController for update password UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@update_delegate
Patch Set: Nit fixes Created 4 years, 6 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: 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_

Powered by Google App Engine
This is Rietveld 408576698