blob: f894ec5e3d30321e3a009eddf819caa599fcea6a [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_BROWSER_UI_COMMANDS_PASSWORD_SUGGESTION_COMMANDS_H_
#define IOS_CHROME_BROWSER_UI_COMMANDS_PASSWORD_SUGGESTION_COMMANDS_H_
#import <Foundation/Foundation.h>
// Commands related to suggesting strong passwords.
@protocol PasswordSuggestionCommands
// Shows the password suggestion view controller.
- (void)showPasswordSuggestion:(NSString*)passwordSuggestion
decisionHandler:(void (^)(BOOL accept))decisionHandler;
@end
#endif // IOS_CHROME_BROWSER_UI_COMMANDS_PASSWORD_SUGGESTION_COMMANDS_H_