| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_PASSWORD_GENERATION_BUBBLE_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_PASSWORD_GENERATION_BUBBLE_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_PASSWORD_GENERATION_BUBBLE_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_PASSWORD_GENERATION_BUBBLE_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" | 10 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" |
| 11 #import "chrome/browser/ui/cocoa/styled_text_field.h" | 11 #import "chrome/browser/ui/cocoa/styled_text_field.h" |
| 12 #include "components/autofill/shared/password_generation_util.h" | 12 #include "components/autofill/common/password_generation_util.h" |
| 13 #include "content/public/common/password_form.h" | 13 #include "content/public/common/password_form.h" |
| 14 | 14 |
| 15 namespace autofill { | 15 namespace autofill { |
| 16 class PasswordGenerator; | 16 class PasswordGenerator; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace content { | 19 namespace content { |
| 20 class RenderViewHost; | 20 class RenderViewHost; |
| 21 } | 21 } |
| 22 | 22 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 - (void)regeneratePassword; | 60 - (void)regeneratePassword; |
| 61 @end | 61 @end |
| 62 | 62 |
| 63 // Testing interfaces | 63 // Testing interfaces |
| 64 | 64 |
| 65 @interface PasswordGenerationTextField (ExposedForTesting) | 65 @interface PasswordGenerationTextField (ExposedForTesting) |
| 66 - (void)simulateIconClick; | 66 - (void)simulateIconClick; |
| 67 @end | 67 @end |
| 68 | 68 |
| 69 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_PASSWORD_GENERATION_BUBBLE_CONTROLLER
_H_ | 69 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_PASSWORD_GENERATION_BUBBLE_CONTROLLER
_H_ |
| OLD | NEW |