summaryrefslogtreecommitdiffstats
path: root/ios/chrome/browser/passwords/password_generation_edit_view.h
blob: e292af8088d42e7ec1db153b61496e2a98fd4987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2014 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_PASSWORD_GENERATION_EDIT_VIEW_H_
#define IOS_CHROME_BROWSER_PASSWORDS_PASSWORD_GENERATION_EDIT_VIEW_H_

#import <UIKit/UIKit.h>

// A view that allows the user to edit an auto-generated password.
@interface PasswordGenerationEditView : UIView
// Initializes a view with the specified |delegate| and initial value of
// |password|. Designated initializer.
- (instancetype)initWithPassword:(NSString*)password NS_DESIGNATED_INITIALIZER;
- (instancetype)initWithFrame:(CGRect)frame NS_UNAVAILABLE;
- (instancetype)initWithCoder:(NSCoder*)aDecoder NS_UNAVAILABLE;
@end

#endif  // IOS_CHROME_BROWSER_PASSWORDS_PASSWORD_GENERATION_EDIT_VIEW_H_