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> |
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 // The star. | 632 // The star. |
633 StarView star_view_; | 633 StarView star_view_; |
634 | 634 |
635 // When true, the location bar view is read only and also is has a slightly | 635 // When true, the location bar view is read only and also is has a slightly |
636 // different presentation (font size / color). This is used for popups. | 636 // different presentation (font size / color). This is used for popups. |
637 bool popup_window_mode_; | 637 bool popup_window_mode_; |
638 | 638 |
639 // Used schedule a task for the first run info bubble. | 639 // Used schedule a task for the first run info bubble. |
640 ScopedRunnableMethodFactory<LocationBarView> first_run_bubble_; | 640 ScopedRunnableMethodFactory<LocationBarView> first_run_bubble_; |
641 | 641 |
642 // Storage of string needed for accessibility. | |
643 std::wstring accessible_name_; | |
644 | |
645 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); | 642 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); |
646 }; | 643 }; |
647 | 644 |
648 #endif // CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ | 645 #endif // CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ |
OLD | NEW |