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

Side by Side Diff: chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.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 (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_AUTOFILL_AUTOFILL_POPUP_VIEW_BRIDGE_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_BRIDGE_H_
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_BRIDGE_H_ 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_BRIDGE_H_
7 7
8 #include <stddef.h>
9
8 #include <vector> 10 #include <vector>
9 11
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
12 #include "base/mac/scoped_nsobject.h" 13 #include "base/mac/scoped_nsobject.h"
14 #include "base/macros.h"
13 #include "chrome/browser/ui/autofill/autofill_popup_view.h" 15 #include "chrome/browser/ui/autofill/autofill_popup_view.h"
14 #include "chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h" 16 #include "chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h"
15 17
16 @class AutofillPopupViewCocoa; 18 @class AutofillPopupViewCocoa;
17 @class NSWindow; 19 @class NSWindow;
18 20
19 namespace autofill { 21 namespace autofill {
20 22
21 class AutofillPopupViewDelegate; 23 class AutofillPopupViewDelegate;
22 24
(...skipping 20 matching lines...) Expand all
43 base::scoped_nsobject<AutofillPopupViewCocoa> view_; 45 base::scoped_nsobject<AutofillPopupViewCocoa> view_;
44 46
45 AutofillPopupController* controller_; // Weak. 47 AutofillPopupController* controller_; // Weak.
46 48
47 DISALLOW_COPY_AND_ASSIGN(AutofillPopupViewBridge); 49 DISALLOW_COPY_AND_ASSIGN(AutofillPopupViewBridge);
48 }; 50 };
49 51
50 } // namespace autofill 52 } // namespace autofill
51 53
52 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_BRIDGE_H_ 54 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_BRIDGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698