Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1620)

Side by Side Diff: ash/system/session/logout_confirmation_dialog.cc

Issue 2808723004: Renames WmShell to ShellPort (Closed)
Patch Set: feedback Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "ash/system/session/logout_confirmation_dialog.h" 5 #include "ash/system/session/logout_confirmation_dialog.h"
6 6
7 #include "ash/public/cpp/shell_window_ids.h" 7 #include "ash/public/cpp/shell_window_ids.h"
8 #include "ash/root_window_controller.h" 8 #include "ash/root_window_controller.h"
9 #include "ash/shell_port.h"
9 #include "ash/strings/grit/ash_strings.h" 10 #include "ash/strings/grit/ash_strings.h"
10 #include "ash/system/session/logout_confirmation_controller.h" 11 #include "ash/system/session/logout_confirmation_controller.h"
11 #include "ash/system/tray/tray_constants.h" 12 #include "ash/system/tray/tray_constants.h"
12 #include "ash/wm_shell.h"
13 #include "ash/wm_window.h" 13 #include "ash/wm_window.h"
14 #include "base/location.h" 14 #include "base/location.h"
15 #include "base/time/tick_clock.h" 15 #include "base/time/tick_clock.h"
16 #include "ui/base/l10n/l10n_util.h" 16 #include "ui/base/l10n/l10n_util.h"
17 #include "ui/base/l10n/time_format.h" 17 #include "ui/base/l10n/time_format.h"
18 #include "ui/base/ui_base_types.h" 18 #include "ui/base/ui_base_types.h"
19 #include "ui/gfx/geometry/rect.h" 19 #include "ui/gfx/geometry/rect.h"
20 #include "ui/gfx/text_constants.h" 20 #include "ui/gfx/text_constants.h"
21 #include "ui/views/border.h" 21 #include "ui/views/border.h"
22 #include "ui/views/controls/label.h" 22 #include "ui/views/controls/label.h"
(...skipping 20 matching lines...) Expand all
43 kTrayPopupPaddingHorizontal)); 43 kTrayPopupPaddingHorizontal));
44 label_->SetHorizontalAlignment(gfx::ALIGN_LEFT); 44 label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
45 label_->SetMultiLine(true); 45 label_->SetMultiLine(true);
46 AddChildView(label_); 46 AddChildView(label_);
47 47
48 UpdateLabel(); 48 UpdateLabel();
49 49
50 views::Widget* widget = new views::Widget; 50 views::Widget* widget = new views::Widget;
51 views::Widget::InitParams params = 51 views::Widget::InitParams params =
52 GetDialogWidgetInitParams(this, nullptr, nullptr, gfx::Rect()); 52 GetDialogWidgetInitParams(this, nullptr, nullptr, gfx::Rect());
53 WmShell::Get() 53 ShellPort::Get()
54 ->GetPrimaryRootWindow() 54 ->GetPrimaryRootWindow()
55 ->GetRootWindowController() 55 ->GetRootWindowController()
56 ->ConfigureWidgetInitParamsForContainer( 56 ->ConfigureWidgetInitParamsForContainer(
57 widget, kShellWindowId_SystemModalContainer, &params); 57 widget, kShellWindowId_SystemModalContainer, &params);
58 widget->Init(params); 58 widget->Init(params);
59 widget->Show(); 59 widget->Show();
60 60
61 update_timer_.Start( 61 update_timer_.Start(
62 FROM_HERE, base::TimeDelta::FromMilliseconds(kCountdownUpdateIntervalMs), 62 FROM_HERE, base::TimeDelta::FromMilliseconds(kCountdownUpdateIntervalMs),
63 this, &LogoutConfirmationDialog::UpdateLabel); 63 this, &LogoutConfirmationDialog::UpdateLabel);
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 ui::TimeFormat::LENGTH_LONG, 10, 113 ui::TimeFormat::LENGTH_LONG, 10,
114 time_remaining))); 114 time_remaining)));
115 } else { 115 } else {
116 label_->SetText( 116 label_->SetText(
117 l10n_util::GetStringUTF16(IDS_ASH_LOGOUT_CONFIRMATION_WARNING_NOW)); 117 l10n_util::GetStringUTF16(IDS_ASH_LOGOUT_CONFIRMATION_WARNING_NOW));
118 update_timer_.Stop(); 118 update_timer_.Stop();
119 } 119 }
120 } 120 }
121 121
122 } // namespace ash 122 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698