| 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_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_ |
| 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <atlbase.h> | 9 #include <atlbase.h> |
| 10 #include <atlapp.h> | 10 #include <atlapp.h> |
| 11 #include <atlcrack.h> | 11 #include <atlcrack.h> |
| 12 #include <atlctrls.h> | 12 #include <atlctrls.h> |
| 13 #include <atlmisc.h> | 13 #include <atlmisc.h> |
| 14 #include <tom.h> // For ITextDocument, a COM interface to CRichEditCtrl. | 14 #include <tom.h> // For ITextDocument, a COM interface to CRichEditCtrl. |
| 15 | 15 |
| 16 #include "app/menus/simple_menu_model.h" | 16 #include "app/menus/simple_menu_model.h" |
| 17 #include "base/scoped_comptr_win.h" | 17 #include "base/scoped_comptr_win.h" |
| 18 #include "base/scoped_ptr.h" | 18 #include "base/scoped_ptr.h" |
| 19 #include "chrome/browser/autocomplete/autocomplete.h" | 19 #include "chrome/browser/autocomplete/autocomplete.h" |
| 20 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" | 20 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" |
| 21 #include "chrome/browser/toolbar_model.h" | 21 #include "chrome/browser/toolbar_model.h" |
| 22 #include "chrome/browser/views/autocomplete/autocomplete_popup_contents_view.h" | 22 #include "chrome/browser/views/autocomplete/autocomplete_popup_contents_view.h" |
| 23 #include "chrome/common/page_transition_types.h" | 23 #include "chrome/common/page_transition_types.h" |
| 24 #include "gfx/font.h" | 24 #include "gfx/font.h" |
| 25 #include "webkit/glue/window_open_disposition.h" | 25 #include "webkit/glue/window_open_disposition.h" |
| 26 #include "views/controls/menu/menu_2.h" | 26 #include "views/controls/menu/menu_2.h" |
| 27 | 27 |
| 28 class AutocompletePopupModel; | |
| 29 class Profile; | 28 class Profile; |
| 30 class TabContents; | 29 class TabContents; |
| 31 namespace views { | 30 namespace views { |
| 32 class View; | 31 class View; |
| 33 } | 32 } |
| 34 | 33 |
| 35 class AutocompleteEditController; | 34 class AutocompleteEditController; |
| 36 class AutocompleteEditModel; | 35 class AutocompleteEditModel; |
| 37 class AutocompleteEditView; | 36 class AutocompleteEditView; |
| 38 class AutocompletePopupView; | 37 class AutocompletePopupView; |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 // striken-out when displaying an insecure scheme. | 497 // striken-out when displaying an insecure scheme. |
| 499 url_parse::Component insecure_scheme_component_; | 498 url_parse::Component insecure_scheme_component_; |
| 500 | 499 |
| 501 // Instance of accessibility information and handling. | 500 // Instance of accessibility information and handling. |
| 502 mutable ScopedComPtr<IAccessible> autocomplete_accessibility_; | 501 mutable ScopedComPtr<IAccessible> autocomplete_accessibility_; |
| 503 | 502 |
| 504 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditViewWin); | 503 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditViewWin); |
| 505 }; | 504 }; |
| 506 | 505 |
| 507 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_ | 506 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_ |
| OLD | NEW |