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

Side by Side Diff: chrome/browser/ui/cocoa/omnibox/omnibox_popup_matrix.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_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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698