OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H
_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H
_ |
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H
_ | 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H
_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
12 #include "base/mac/scoped_nsobject.h" | 11 #include "base/mac/scoped_nsobject.h" |
| 12 #include "base/macros.h" |
13 #include "chrome/browser/ui/autofill/password_generation_popup_view.h" | 13 #include "chrome/browser/ui/autofill/password_generation_popup_view.h" |
14 | 14 |
15 @class PasswordGenerationPopupViewCocoa; | 15 @class PasswordGenerationPopupViewCocoa; |
16 | 16 |
17 namespace autofill { | 17 namespace autofill { |
18 | 18 |
19 class AutofillPopupController; | 19 class AutofillPopupController; |
20 | 20 |
21 // Mac implementation for PasswordGenerationPopupView interface. | 21 // Mac implementation for PasswordGenerationPopupView interface. |
22 // Serves as a bridge to an instance of the Objective-C class which actually | 22 // Serves as a bridge to an instance of the Objective-C class which actually |
(...skipping 16 matching lines...) Expand all Loading... |
39 | 39 |
40 // The native Cocoa view. | 40 // The native Cocoa view. |
41 base::scoped_nsobject<PasswordGenerationPopupViewCocoa> view_; | 41 base::scoped_nsobject<PasswordGenerationPopupViewCocoa> view_; |
42 | 42 |
43 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewBridge); | 43 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewBridge); |
44 }; | 44 }; |
45 | 45 |
46 } // namespace autofill | 46 } // namespace autofill |
47 | 47 |
48 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDG
E_H_ | 48 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDG
E_H_ |
OLD | NEW |