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 #include "chrome/browser/chromeos/login/background_view.h" | 5 #include "chrome/browser/chromeos/login/background_view.h" |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "app/resource_bundle.h" | 8 #include "app/resource_bundle.h" |
9 #include "app/x11_util.h" | 9 #include "app/x11_util.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "chrome/browser/chromeos/login/rounded_rect_painter.h" | 11 #include "chrome/browser/chromeos/login/rounded_rect_painter.h" |
12 #include "chrome/browser/chromeos/status/clock_menu_button.h" | 12 #include "chrome/browser/chromeos/status/clock_menu_button.h" |
| 13 #include "chrome/browser/chromeos/status/feedback_menu_button.h" |
13 #include "chrome/browser/chromeos/status/language_menu_button.h" | 14 #include "chrome/browser/chromeos/status/language_menu_button.h" |
14 #include "chrome/browser/chromeos/status/network_menu_button.h" | 15 #include "chrome/browser/chromeos/status/network_menu_button.h" |
15 #include "chrome/browser/chromeos/status/status_area_view.h" | 16 #include "chrome/browser/chromeos/status/status_area_view.h" |
16 #include "chrome/browser/chromeos/wm_ipc.h" | 17 #include "chrome/browser/chromeos/wm_ipc.h" |
17 #include "third_party/cros/chromeos_wm_ipc_enums.h" | 18 #include "third_party/cros/chromeos_wm_ipc_enums.h" |
18 #include "grit/chromium_strings.h" | 19 #include "grit/chromium_strings.h" |
19 #include "grit/generated_resources.h" | 20 #include "grit/generated_resources.h" |
20 #include "views/controls/label.h" | 21 #include "views/controls/label.h" |
21 #include "views/screen.h" | 22 #include "views/screen.h" |
22 #include "views/widget/widget_gtk.h" | 23 #include "views/widget/widget_gtk.h" |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 } | 120 } |
120 | 121 |
121 gfx::NativeWindow BackgroundView::GetNativeWindow() const { | 122 gfx::NativeWindow BackgroundView::GetNativeWindow() const { |
122 return | 123 return |
123 GTK_WINDOW(static_cast<WidgetGtk*>(GetWidget())->GetNativeView()); | 124 GTK_WINDOW(static_cast<WidgetGtk*>(GetWidget())->GetNativeView()); |
124 } | 125 } |
125 | 126 |
126 bool BackgroundView::ShouldOpenButtonOptions( | 127 bool BackgroundView::ShouldOpenButtonOptions( |
127 const views::View* button_view) const { | 128 const views::View* button_view) const { |
128 if (button_view == status_area_->clock_view() || | 129 if (button_view == status_area_->clock_view() || |
| 130 button_view == status_area_->feedback_view() || |
129 button_view == status_area_->language_view() || | 131 button_view == status_area_->language_view() || |
130 button_view == status_area_->network_view()) { | 132 button_view == status_area_->network_view()) { |
131 return false; | 133 return false; |
132 } | 134 } |
133 return true; | 135 return true; |
134 } | 136 } |
135 | 137 |
136 void BackgroundView::OpenButtonOptions(const views::View* button_view) const { | 138 void BackgroundView::OpenButtonOptions(const views::View* button_view) const { |
137 // TODO(avayvod): Add some dialog for options or remove them completely. | 139 // TODO(avayvod): Add some dialog for options or remove them completely. |
138 } | 140 } |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 kBootTimesNoChromeExec, | 230 kBootTimesNoChromeExec, |
229 boot_times.firmware + boot_times.login_prompt_ready, | 231 boot_times.firmware + boot_times.login_prompt_ready, |
230 boot_times.firmware, | 232 boot_times.firmware, |
231 boot_times.pre_startup, | 233 boot_times.pre_startup, |
232 boot_times.login_prompt_ready - boot_times.pre_startup); | 234 boot_times.login_prompt_ready - boot_times.pre_startup); |
233 } | 235 } |
234 boot_times_label_->SetText(ASCIIToWide(boot_times_text)); | 236 boot_times_label_->SetText(ASCIIToWide(boot_times_text)); |
235 } | 237 } |
236 | 238 |
237 } // namespace chromeos | 239 } // namespace chromeos |
OLD | NEW |