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_VIEWS_LOCATION_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <map> | 9 #include <map> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "app/gfx/font.h" | |
13 #include "base/task.h" | 12 #include "base/task.h" |
14 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 13 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
15 #include "chrome/browser/extensions/extension_context_menu_model.h" | 14 #include "chrome/browser/extensions/extension_context_menu_model.h" |
16 #include "chrome/browser/extensions/image_loading_tracker.h" | 15 #include "chrome/browser/extensions/image_loading_tracker.h" |
17 #include "chrome/browser/location_bar.h" | 16 #include "chrome/browser/location_bar.h" |
18 #include "chrome/browser/tab_contents/tab_contents.h" | 17 #include "chrome/browser/tab_contents/tab_contents.h" |
19 #include "chrome/browser/toolbar_model.h" | 18 #include "chrome/browser/toolbar_model.h" |
20 #include "chrome/browser/views/browser_bubble.h" | 19 #include "chrome/browser/views/browser_bubble.h" |
21 #include "chrome/browser/views/extensions/extension_popup.h" | 20 #include "chrome/browser/views/extensions/extension_popup.h" |
22 #include "chrome/browser/views/info_bubble.h" | 21 #include "chrome/browser/views/info_bubble.h" |
23 #include "chrome/common/content_settings_types.h" | 22 #include "chrome/common/content_settings_types.h" |
24 #include "chrome/common/notification_observer.h" | 23 #include "chrome/common/notification_observer.h" |
25 #include "chrome/common/notification_registrar.h" | 24 #include "chrome/common/notification_registrar.h" |
| 25 #include "gfx/font.h" |
26 #include "gfx/rect.h" | 26 #include "gfx/rect.h" |
27 #include "views/controls/image_view.h" | 27 #include "views/controls/image_view.h" |
28 #include "views/controls/label.h" | 28 #include "views/controls/label.h" |
29 #include "views/controls/menu/menu_2.h" | 29 #include "views/controls/menu/menu_2.h" |
30 #include "views/controls/native/native_view_host.h" | 30 #include "views/controls/native/native_view_host.h" |
31 #include "views/painter.h" | 31 #include "views/painter.h" |
32 | 32 |
33 #if defined(OS_WIN) | 33 #if defined(OS_WIN) |
34 #include "chrome/browser/autocomplete/autocomplete_edit_view_win.h" | 34 #include "chrome/browser/autocomplete/autocomplete_edit_view_win.h" |
35 #else | 35 #else |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 // The positioner that places the omnibox and info bubbles. | 649 // The positioner that places the omnibox and info bubbles. |
650 const BubblePositioner* bubble_positioner_; | 650 const BubblePositioner* bubble_positioner_; |
651 | 651 |
652 // Storage of string needed for accessibility. | 652 // Storage of string needed for accessibility. |
653 std::wstring accessible_name_; | 653 std::wstring accessible_name_; |
654 | 654 |
655 DISALLOW_COPY_AND_ASSIGN(LocationBarView); | 655 DISALLOW_COPY_AND_ASSIGN(LocationBarView); |
656 }; | 656 }; |
657 | 657 |
658 #endif // CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ | 658 #endif // CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ |
OLD | NEW |