| 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 #include "ui/app_list/views/search_box_view.h" | 5 #include "ui/app_list/views/search_box_view.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "grit/ui_resources.h" | 9 #include "grit/ui_resources.h" |
| 10 #include "ui/app_list/app_list_model.h" | 10 #include "ui/app_list/app_list_model.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // Updates model and fires query changed manually because SetText() above | 101 // Updates model and fires query changed manually because SetText() above |
| 102 // does not generate ContentsChanged() notification. | 102 // does not generate ContentsChanged() notification. |
| 103 UpdateModel(); | 103 UpdateModel(); |
| 104 NotifyQueryChanged(); | 104 NotifyQueryChanged(); |
| 105 } | 105 } |
| 106 | 106 |
| 107 void SearchBoxView::InvalidateMenu() { | 107 void SearchBoxView::InvalidateMenu() { |
| 108 menu_.reset(); | 108 menu_.reset(); |
| 109 } | 109 } |
| 110 | 110 |
| 111 gfx::Size SearchBoxView::GetPreferredSize() { | 111 gfx::Size SearchBoxView::GetPreferredSize() const { |
| 112 return gfx::Size(kPreferredWidth, kPreferredHeight); | 112 return gfx::Size(kPreferredWidth, kPreferredHeight); |
| 113 } | 113 } |
| 114 | 114 |
| 115 void SearchBoxView::Layout() { | 115 void SearchBoxView::Layout() { |
| 116 gfx::Rect rect(GetContentsBounds()); | 116 gfx::Rect rect(GetContentsBounds()); |
| 117 if (rect.IsEmpty()) | 117 if (rect.IsEmpty()) |
| 118 return; | 118 return; |
| 119 | 119 |
| 120 gfx::Rect icon_frame(rect); | 120 gfx::Rect icon_frame(rect); |
| 121 icon_frame.set_width(kIconDimension + 2 * kPadding); | 121 icon_frame.set_width(kIconDimension + 2 * kPadding); |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 NotifyQueryChanged(); | 253 NotifyQueryChanged(); |
| 254 } | 254 } |
| 255 | 255 |
| 256 void SearchBoxView::OnSpeechRecognitionStateChanged( | 256 void SearchBoxView::OnSpeechRecognitionStateChanged( |
| 257 SpeechRecognitionState new_state) { | 257 SpeechRecognitionState new_state) { |
| 258 SpeechRecognitionButtonPropChanged(); | 258 SpeechRecognitionButtonPropChanged(); |
| 259 SchedulePaint(); | 259 SchedulePaint(); |
| 260 } | 260 } |
| 261 | 261 |
| 262 } // namespace app_list | 262 } // namespace app_list |
| OLD | NEW |