Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: chrome/browser/ui/cocoa/autofill/new_credit_card_bubble_cocoa.h

Issue 1543393002: Switch to standard integer types in chrome/browser/ui/cocoa/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698