| 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_OMNIBOX_OMNIBOX_POPUP_MATRIX_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_MATRIX_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_MATRIX_H_ | 6 #define CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_MATRIX_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 #include <stddef.h> |
| 9 | 10 |
| 10 #import "ui/base/cocoa/tracking_area.h" | 11 #import "ui/base/cocoa/tracking_area.h" |
| 11 #include "ui/base/window_open_disposition.h" | 12 #include "ui/base/window_open_disposition.h" |
| 12 | 13 |
| 13 class AutocompleteResult; | 14 class AutocompleteResult; |
| 14 @class OmniboxPopupCell; | 15 @class OmniboxPopupCell; |
| 15 @class OmniboxPopupMatrix; | 16 @class OmniboxPopupMatrix; |
| 16 class OmniboxPopupViewMac; | 17 class OmniboxPopupViewMac; |
| 17 | 18 |
| 18 @interface OmniboxPopupTableController | 19 @interface OmniboxPopupTableController |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 85 |
| 85 // Move the selection to |rowIndex|. | 86 // Move the selection to |rowIndex|. |
| 86 - (void)selectRowIndex:(NSInteger)rowIndex; | 87 - (void)selectRowIndex:(NSInteger)rowIndex; |
| 87 | 88 |
| 88 // Setup the NSTableView data source. | 89 // Setup the NSTableView data source. |
| 89 - (void)setController:(OmniboxPopupTableController*)controller; | 90 - (void)setController:(OmniboxPopupTableController*)controller; |
| 90 | 91 |
| 91 @end | 92 @end |
| 92 | 93 |
| 93 #endif // CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_MATRIX_H_ | 94 #endif // CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_POPUP_MATRIX_H_ |
| OLD | NEW |