| 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 | 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> |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 // stricken-out when displaying an insecure scheme. | 511 // stricken-out when displaying an insecure scheme. |
| 512 url_parse::Component insecure_scheme_component_; | 512 url_parse::Component insecure_scheme_component_; |
| 513 | 513 |
| 514 // Instance of accessibility information and handling. | 514 // Instance of accessibility information and handling. |
| 515 mutable base::win::ScopedComPtr<IAccessible> autocomplete_accessibility_; | 515 mutable base::win::ScopedComPtr<IAccessible> autocomplete_accessibility_; |
| 516 | 516 |
| 517 // The native view host. | 517 // The native view host. |
| 518 views::NativeViewHost* native_view_host_; | 518 views::NativeViewHost* native_view_host_; |
| 519 | 519 |
| 520 // TSF related event router. | 520 // TSF related event router. |
| 521 scoped_refptr<ui::TsfEventRouter> tsf_event_router_; | 521 scoped_ptr<ui::TsfEventRouter> tsf_event_router_; |
| 522 | 522 |
| 523 DISALLOW_COPY_AND_ASSIGN(OmniboxViewWin); | 523 DISALLOW_COPY_AND_ASSIGN(OmniboxViewWin); |
| 524 }; | 524 }; |
| 525 | 525 |
| 526 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ | 526 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ |
| OLD | NEW |