| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_VIEW_WIN_H_ |
| 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_VIEW_WIN_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlapp.h> | 9 #include <atlapp.h> |
| 10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
| 11 #include <atlmisc.h> | 11 #include <atlmisc.h> |
| 12 | 12 |
| 13 #include <string> | 13 #include <string> |
| 14 | 14 |
| 15 #include "app/gfx/chrome_font.h" | 15 #include "app/gfx/font.h" |
| 16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
| 17 #include "base/win_util.h" | 17 #include "base/win_util.h" |
| 18 #include "chrome/browser/autocomplete/autocomplete.h" | 18 #include "chrome/browser/autocomplete/autocomplete.h" |
| 19 #include "chrome/browser/autocomplete/autocomplete_popup_view.h" | 19 #include "chrome/browser/autocomplete/autocomplete_popup_view.h" |
| 20 #include "webkit/glue/window_open_disposition.h" | 20 #include "webkit/glue/window_open_disposition.h" |
| 21 | 21 |
| 22 class AutocompletePopupModel; | 22 class AutocompletePopupModel; |
| 23 class AutocompleteEditModel; | 23 class AutocompleteEditModel; |
| 24 class AutocompleteEditViewWin; | 24 class AutocompleteEditViewWin; |
| 25 class Profile; | 25 class Profile; |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 // mouse position when hover tracking was turned off. If the mouse moves to a | 201 // mouse position when hover tracking was turned off. If the mouse moves to a |
| 202 // point over the popup that has different coordinates, hover tracking will be | 202 // point over the popup that has different coordinates, hover tracking will be |
| 203 // re-enabled. When hovered_line_ is a valid line, the value here is | 203 // re-enabled. When hovered_line_ is a valid line, the value here is |
| 204 // out-of-date and should be ignored. | 204 // out-of-date and should be ignored. |
| 205 CPoint last_hover_coordinates_; | 205 CPoint last_hover_coordinates_; |
| 206 | 206 |
| 207 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupViewWin); | 207 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupViewWin); |
| 208 }; | 208 }; |
| 209 | 209 |
| 210 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_VIEW_WIN_H_ | 210 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_VIEW_WIN_H_ |
| OLD | NEW |