Chromium Code Reviews

Side by Side Diff: chrome/browser/chromeos/login/background_view.cc

Issue 2125013: Revert 47749 - Integrated new bug icon in status bar. It opens bug reporting ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
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"
14 #include "chrome/browser/chromeos/status/language_menu_button.h" 13 #include "chrome/browser/chromeos/status/language_menu_button.h"
15 #include "chrome/browser/chromeos/status/network_menu_button.h" 14 #include "chrome/browser/chromeos/status/network_menu_button.h"
16 #include "chrome/browser/chromeos/status/status_area_view.h" 15 #include "chrome/browser/chromeos/status/status_area_view.h"
17 #include "chrome/browser/chromeos/wm_ipc.h" 16 #include "chrome/browser/chromeos/wm_ipc.h"
18 #include "third_party/cros/chromeos_wm_ipc_enums.h" 17 #include "third_party/cros/chromeos_wm_ipc_enums.h"
19 #include "grit/chromium_strings.h" 18 #include "grit/chromium_strings.h"
20 #include "grit/generated_resources.h" 19 #include "grit/generated_resources.h"
21 #include "views/controls/label.h" 20 #include "views/controls/label.h"
22 #include "views/screen.h" 21 #include "views/screen.h"
23 #include "views/widget/widget_gtk.h" 22 #include "views/widget/widget_gtk.h"
(...skipping 96 matching lines...)
120 } 119 }
121 120
122 gfx::NativeWindow BackgroundView::GetNativeWindow() const { 121 gfx::NativeWindow BackgroundView::GetNativeWindow() const {
123 return 122 return
124 GTK_WINDOW(static_cast<WidgetGtk*>(GetWidget())->GetNativeView()); 123 GTK_WINDOW(static_cast<WidgetGtk*>(GetWidget())->GetNativeView());
125 } 124 }
126 125
127 bool BackgroundView::ShouldOpenButtonOptions( 126 bool BackgroundView::ShouldOpenButtonOptions(
128 const views::View* button_view) const { 127 const views::View* button_view) const {
129 if (button_view == status_area_->clock_view() || 128 if (button_view == status_area_->clock_view() ||
130 button_view == status_area_->feedback_view() ||
131 button_view == status_area_->language_view() || 129 button_view == status_area_->language_view() ||
132 button_view == status_area_->network_view()) { 130 button_view == status_area_->network_view()) {
133 return false; 131 return false;
134 } 132 }
135 return true; 133 return true;
136 } 134 }
137 135
138 void BackgroundView::OpenButtonOptions(const views::View* button_view) const { 136 void BackgroundView::OpenButtonOptions(const views::View* button_view) const {
139 // TODO(avayvod): Add some dialog for options or remove them completely. 137 // TODO(avayvod): Add some dialog for options or remove them completely.
140 } 138 }
(...skipping 89 matching lines...)
230 kBootTimesNoChromeExec, 228 kBootTimesNoChromeExec,
231 boot_times.firmware + boot_times.login_prompt_ready, 229 boot_times.firmware + boot_times.login_prompt_ready,
232 boot_times.firmware, 230 boot_times.firmware,
233 boot_times.pre_startup, 231 boot_times.pre_startup,
234 boot_times.login_prompt_ready - boot_times.pre_startup); 232 boot_times.login_prompt_ready - boot_times.pre_startup);
235 } 233 }
236 boot_times_label_->SetText(ASCIIToWide(boot_times_text)); 234 boot_times_label_->SetText(ASCIIToWide(boot_times_text));
237 } 235 }
238 236
239 } // namespace chromeos 237 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/background_view.h ('k') | chrome/browser/chromeos/status/feedback_menu_button.h » ('j') | no next file with comments »

Powered by Google App Engine