| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_LOCATION_BAR_AUTOCOMPLETE_TEXT_FIELD_CELL_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_LOCATION_BAR_AUTOCOMPLETE_TEXT_FIELD_CELL_H_ |
| 7 |
| 5 #include <vector> | 8 #include <vector> |
| 6 | 9 |
| 7 #import <Cocoa/Cocoa.h> | 10 #import <Cocoa/Cocoa.h> |
| 8 | 11 |
| 9 #include "base/mac/scoped_nsobject.h" | 12 #include "base/mac/scoped_nsobject.h" |
| 10 #import "chrome/browser/ui/cocoa/styled_text_field_cell.h" | 13 #import "chrome/browser/ui/cocoa/styled_text_field_cell.h" |
| 11 | 14 |
| 12 @class AutocompleteTextField; | 15 @class AutocompleteTextField; |
| 13 class LocationBarDecoration; | 16 class LocationBarDecoration; |
| 14 | 17 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 ofView:(AutocompleteTextField*)controlView; | 141 ofView:(AutocompleteTextField*)controlView; |
| 139 @end | 142 @end |
| 140 | 143 |
| 141 // Methods which are either only for testing, or only public for testing. | 144 // Methods which are either only for testing, or only public for testing. |
| 142 @interface AutocompleteTextFieldCell (TestingAPI) | 145 @interface AutocompleteTextFieldCell (TestingAPI) |
| 143 | 146 |
| 144 // Returns |mouseTrackingDecorations_|. | 147 // Returns |mouseTrackingDecorations_|. |
| 145 - (const std::vector<LocationBarDecoration*>&)mouseTrackingDecorations; | 148 - (const std::vector<LocationBarDecoration*>&)mouseTrackingDecorations; |
| 146 | 149 |
| 147 @end | 150 @end |
| 151 |
| 152 #endif // CHROME_BROWSER_UI_COCOA_LOCATION_BAR_AUTOCOMPLETE_TEXT_FIELD_CELL_H_ |
| OLD | NEW |