Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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_ |
| OLD | NEW |