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

Side by Side Diff: ash/shell/lock_view.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 (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 "ash/public/cpp/shell_window_ids.h" 5 #include "ash/public/cpp/shell_window_ids.h"
6 #include "ash/session/session_controller.h" 6 #include "ash/session/session_controller.h"
7 #include "ash/shell.h" 7 #include "ash/shell.h"
8 #include "ash/shell/example_factory.h" 8 #include "ash/shell/example_factory.h"
9 #include "ash/shell/example_session_controller_client.h" 9 #include "ash/shell/example_session_controller_client.h"
10 #include "ash/wm_shell.h"
11 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
12 #include "ui/aura/window.h" 11 #include "ui/aura/window.h"
13 #include "ui/aura/window_event_dispatcher.h" 12 #include "ui/aura/window_event_dispatcher.h"
14 #include "ui/gfx/canvas.h" 13 #include "ui/gfx/canvas.h"
15 #include "ui/gfx/font_list.h" 14 #include "ui/gfx/font_list.h"
16 #include "ui/gfx/geometry/rect.h" 15 #include "ui/gfx/geometry/rect.h"
17 #include "ui/gfx/text_utils.h" 16 #include "ui/gfx/text_utils.h"
18 #include "ui/views/controls/button/md_text_button.h" 17 #include "ui/views/controls/button/md_text_button.h"
19 #include "ui/views/corewm/tooltip_controller.h" 18 #include "ui/views/corewm/tooltip_controller.h"
20 #include "ui/views/widget/widget.h" 19 #include "ui/views/widget/widget.h"
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 widget->Show(); 95 widget->Show();
97 widget->GetNativeView()->SetName("LockView"); 96 widget->GetNativeView()->SetName("LockView");
98 widget->GetNativeView()->Focus(); 97 widget->GetNativeView()->Focus();
99 98
100 // TODO: it shouldn't be necessary to invoke UpdateTooltip() here. 99 // TODO: it shouldn't be necessary to invoke UpdateTooltip() here.
101 Shell::Get()->tooltip_controller()->UpdateTooltip(widget->GetNativeView()); 100 Shell::Get()->tooltip_controller()->UpdateTooltip(widget->GetNativeView());
102 } 101 }
103 102
104 } // namespace shell 103 } // namespace shell
105 } // namespace ash 104 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698