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

Side by Side 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, 5 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
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698