OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_NEW_CREDIT_CARD_BUBBLE_COCOA_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_COCOA_H_ |
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_COCOA_H_ | 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_COCOA_H_ |
7 | 7 |
8 #include "base/basictypes.h" | |
9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
10 #include "base/gtest_prod_util.h" | 9 #include "base/gtest_prod_util.h" |
| 10 #include "base/macros.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "chrome/browser/ui/autofill/new_credit_card_bubble_view.h" | 12 #include "chrome/browser/ui/autofill/new_credit_card_bubble_view.h" |
13 | 13 |
14 #ifdef __OBJC__ | 14 #ifdef __OBJC__ |
15 @class InfoBubbleWindow; | 15 @class InfoBubbleWindow; |
16 @class NewCreditCardBubbleControllerCocoa; | 16 @class NewCreditCardBubbleControllerCocoa; |
17 @class NSWindow; | 17 @class NSWindow; |
18 #else | 18 #else |
19 class InfoBubbleWindow; | 19 class InfoBubbleWindow; |
20 class NewCreditCardBubbleControllerCocoa; | 20 class NewCreditCardBubbleControllerCocoa; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 NewCreditCardBubbleController* controller_; | 55 NewCreditCardBubbleController* controller_; |
56 | 56 |
57 base::WeakPtrFactory<NewCreditCardBubbleCocoa> weak_ptr_factory_; | 57 base::WeakPtrFactory<NewCreditCardBubbleCocoa> weak_ptr_factory_; |
58 | 58 |
59 DISALLOW_COPY_AND_ASSIGN(NewCreditCardBubbleCocoa); | 59 DISALLOW_COPY_AND_ASSIGN(NewCreditCardBubbleCocoa); |
60 }; | 60 }; |
61 | 61 |
62 } // namespace auotfill | 62 } // namespace auotfill |
63 | 63 |
64 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_COCOA_H_ | 64 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_NEW_CREDIT_CARD_BUBBLE_COCOA_H_ |
OLD | NEW |