blob: 831e79804cb8b4a48b28d5c61fa8cab3e1e64b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright 2015 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_PASSWORDS_UI_DELEGATE_H_
#define IOS_CHROME_BROWSER_PASSWORDS_PASSWORDS_UI_DELEGATE_H_
#import <Foundation/Foundation.h>
#import "ios/chrome/browser/passwords/password_generation_prompt_delegate.h"
// Abstracts some UI-related tasks to isolate the rest of the code from
// Google's internal Material Design implementation.
@protocol PasswordsUiDelegate<NSObject>
// Opens the password generation alert to offer the generated |password| to the
// user.
- (void)showGenerationAlertWithPassword:(NSString*)password
andPromptDelegate:
(id<PasswordGenerationPromptDelegate>)delegate;
// Hides the alert (if open) from showGenerationAlertWithPassword.
- (void)hideGenerationAlert;
@end
#endif // IOS_CHROME_BROWSER_PASSWORDS_PASSWORDS_UI_DELEGATE_H_
|