| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_LOCATION_BAR_SELECTED_KEYWORD_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_SELECTED_KEYWORD_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_SELECTED_KEYWORD_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_SELECTED_KEYWORD_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "chrome/browser/views/location_bar/icon_label_bubble_view.h" | 11 #include "chrome/browser/ui/views/location_bar/icon_label_bubble_view.h" |
| 12 #include "views/controls/label.h" | 12 #include "views/controls/label.h" |
| 13 | 13 |
| 14 class Profile; | 14 class Profile; |
| 15 namespace gfx { | 15 namespace gfx { |
| 16 class Font; | 16 class Font; |
| 17 class Size; | 17 class Size; |
| 18 } | 18 } |
| 19 | 19 |
| 20 // SelectedKeywordView displays the tab-to-search UI in the location bar view. | 20 // SelectedKeywordView displays the tab-to-search UI in the location bar view. |
| 21 class SelectedKeywordView : public IconLabelBubbleView { | 21 class SelectedKeywordView : public IconLabelBubbleView { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 50 // enough room to display the complete description. | 50 // enough room to display the complete description. |
| 51 views::Label full_label_; | 51 views::Label full_label_; |
| 52 views::Label partial_label_; | 52 views::Label partial_label_; |
| 53 | 53 |
| 54 Profile* profile_; | 54 Profile* profile_; |
| 55 | 55 |
| 56 DISALLOW_IMPLICIT_CONSTRUCTORS(SelectedKeywordView); | 56 DISALLOW_IMPLICIT_CONSTRUCTORS(SelectedKeywordView); |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_SELECTED_KEYWORD_VIEW_H_ | 59 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_SELECTED_KEYWORD_VIEW_H_ |
| OLD | NEW |