OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
3 // LICENSE file. | 3 // LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW_H_ |
7 | 7 |
8 #include "app/gfx/chrome_font.h" | 8 #include "app/gfx/chrome_font.h" |
9 #include "chrome/browser/autocomplete/autocomplete.h" | 9 #include "chrome/browser/autocomplete/autocomplete.h" |
10 #include "chrome/browser/autocomplete/autocomplete_popup_model.h" | 10 #include "chrome/browser/autocomplete/autocomplete_popup_model.h" |
11 #include "chrome/browser/autocomplete/autocomplete_popup_view.h" | 11 #include "chrome/browser/autocomplete/autocomplete_popup_view.h" |
12 #include "chrome/views/view.h" | 12 #include "chrome/views/view.h" |
| 13 #include "webkit/glue/window_open_disposition.h" |
13 | 14 |
14 class AutocompleteEditModel; | 15 class AutocompleteEditModel; |
15 class AutocompleteEditViewWin; | 16 class AutocompleteEditViewWin; |
16 class AutocompletePopupWin; | 17 class AutocompletePopupWin; |
17 class Profile; | 18 class Profile; |
18 | 19 |
19 // An interface implemented by an object that provides data to populate | 20 // An interface implemented by an object that provides data to populate |
20 // individual result views. | 21 // individual result views. |
21 class AutocompleteResultViewModel { | 22 class AutocompleteResultViewModel { |
22 public: | 23 public: |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 101 |
101 // The font used by the edit that created us. This is used by the result | 102 // The font used by the edit that created us. This is used by the result |
102 // views to synthesize a suitable display font. | 103 // views to synthesize a suitable display font. |
103 ChromeFont edit_font_; | 104 ChromeFont edit_font_; |
104 | 105 |
105 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupContentsView); | 106 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupContentsView); |
106 }; | 107 }; |
107 | 108 |
108 | 109 |
109 #endif // #ifndef CHROME_BROWSER_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS
_VIEW_H_ | 110 #endif // #ifndef CHROME_BROWSER_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS
_VIEW_H_ |
OLD | NEW |