| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ | 
| 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_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 <peninputpanel.h> | 14 #include <peninputpanel.h> | 
| 15 #include <tom.h>  // For ITextDocument, a COM interface to CRichEditCtrl. | 15 #include <tom.h>  // For ITextDocument, a COM interface to CRichEditCtrl. | 
| 16 | 16 | 
| 17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" | 
| 18 #include "base/win/scoped_comptr.h" | 18 #include "base/win/scoped_comptr.h" | 
| 19 #include "chrome/browser/autocomplete/autocomplete.h" | 19 #include "chrome/browser/autocomplete/autocomplete.h" | 
| 20 #include "chrome/browser/ui/omnibox/omnibox_view.h" | 20 #include "chrome/browser/ui/omnibox/omnibox_view.h" | 
| 21 #include "chrome/browser/ui/toolbar/toolbar_model.h" | 21 #include "chrome/browser/ui/toolbar/toolbar_model.h" | 
| 22 #include "chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.
     h" | 22 #include "chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.h" | 
| 23 #include "ui/base/models/simple_menu_model.h" | 23 #include "ui/base/models/simple_menu_model.h" | 
| 24 #include "ui/base/win/extra_sdk_defines.h" | 24 #include "ui/base/win/extra_sdk_defines.h" | 
| 25 #include "ui/gfx/font.h" | 25 #include "ui/gfx/font.h" | 
| 26 #include "webkit/glue/window_open_disposition.h" | 26 #include "webkit/glue/window_open_disposition.h" | 
| 27 | 27 | 
| 28 class AutocompleteEditController; | 28 class AutocompleteEditController; | 
| 29 class AutocompleteEditModel; | 29 class AutocompleteEditModel; | 
| 30 class AutocompletePopupView; | 30 class AutocompletePopupView; | 
| 31 class LocationBarView; | 31 class LocationBarView; | 
| 32 | 32 | 
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 530   // Instance of accessibility information and handling. | 530   // Instance of accessibility information and handling. | 
| 531   mutable base::win::ScopedComPtr<IAccessible> autocomplete_accessibility_; | 531   mutable base::win::ScopedComPtr<IAccessible> autocomplete_accessibility_; | 
| 532 | 532 | 
| 533   // The native view host. | 533   // The native view host. | 
| 534   views::NativeViewHost* native_view_host_; | 534   views::NativeViewHost* native_view_host_; | 
| 535 | 535 | 
| 536   DISALLOW_COPY_AND_ASSIGN(OmniboxViewWin); | 536   DISALLOW_COPY_AND_ASSIGN(OmniboxViewWin); | 
| 537 }; | 537 }; | 
| 538 | 538 | 
| 539 #endif  // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ | 539 #endif  // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ | 
| OLD | NEW | 
|---|