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

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

Issue 2727233003: Uses child views in Autofill Popup so we can trigger (Closed)
Patch Set: Removes base/optional.h include and inline definitions. Uses NSInteger instead of int. Created 3 years, 9 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_COCOA_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_ 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 #include <stddef.h> 9 #include <stddef.h>
10 10
(...skipping 15 matching lines...) Expand all
26 26
27 // Designated initializer. 27 // Designated initializer.
28 - (id)initWithController:(autofill::AutofillPopupController*)controller 28 - (id)initWithController:(autofill::AutofillPopupController*)controller
29 frame:(NSRect)frame 29 frame:(NSRect)frame
30 delegate:(autofill::AutofillPopupViewCocoaDelegate*)delegate; 30 delegate:(autofill::AutofillPopupViewCocoaDelegate*)delegate;
31 31
32 // Informs the view that its controller has been (or will imminently be) 32 // Informs the view that its controller has been (or will imminently be)
33 // destroyed. 33 // destroyed.
34 - (void)controllerDestroyed; 34 - (void)controllerDestroyed;
35 35
36 - (void)invalidateRow:(size_t)row; 36 - (void)invalidateRow:(int)row;
groby-ooo-7-16 2017/03/20 22:53:10 NSInteger please.
csashi 2017/03/20 23:13:30 Done.
37 37
38 @end 38 @end
39 39
40 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_ 40 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698