Index: chrome/browser/ui/cocoa/passwords/manage_credential_item_view_controller.h |
diff --git a/chrome/browser/ui/cocoa/passwords/manage_credential_item_view_controller.h b/chrome/browser/ui/cocoa/passwords/manage_credential_item_view_controller.h |
deleted file mode 100644 |
index aca8748d8ecebbf56456844d4e5f2fb75f670e79..0000000000000000000000000000000000000000 |
--- a/chrome/browser/ui/cocoa/passwords/manage_credential_item_view_controller.h |
+++ /dev/null |
@@ -1,50 +0,0 @@ |
-// 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 CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_CREDENTIAL_ITEM_VIEW_CONTROLLER_H_ |
-#define CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_CREDENTIAL_ITEM_VIEW_CONTROLLER_H_ |
- |
-#import <Cocoa/Cocoa.h> |
- |
-#include "base/mac/scoped_nsobject.h" |
-#include "components/autofill/core/common/password_form.h" |
- |
-@protocol CredentialItemDelegate; |
-@class CredentialItemView; |
-@class HoverImageButton; |
-class ManagePasswordsBubbleModel; |
- |
-@interface ManageCredentialItemView : NSView { |
- base::scoped_nsobject<CredentialItemView> credentialItem_; |
- base::scoped_nsobject<HoverImageButton> deleteButton_; |
-} |
-- (id)initWithPasswordForm:(const autofill::PasswordForm&)passwordForm |
- delegate:(id<CredentialItemDelegate>)delegate |
- target:(id)target |
- action:(SEL)action; |
-@end |
- |
-@interface DeletedCredentialItemView : NSView { |
- base::scoped_nsobject<NSButton> undoButton_; |
-} |
-- (id)initWithTarget:(id)target action:(SEL)action; |
-@end |
- |
-@interface ManageCredentialItemViewController : NSViewController { |
- base::scoped_nsobject<NSView> contentView_; |
- autofill::PasswordForm passwordForm_; |
- ManagePasswordsBubbleModel* model_; |
- id<CredentialItemDelegate> delegate_; // Weak. |
-} |
-- (id)initWithPasswordForm:(const autofill::PasswordForm&)passwordForm |
- model:(ManagePasswordsBubbleModel*)model |
- delegate:(id<CredentialItemDelegate>)delegate; |
-@end |
- |
-@interface ManageCredentialItemViewController (Testing) |
-@property(nonatomic, readonly) const autofill::PasswordForm& passwordForm; |
-@property(nonatomic, readonly) NSView* contentView; |
-@end |
- |
-#endif // CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_CREDENTIAL_ITEM_VIEW_CONTROLLER_H_ |