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

Side by Side Diff: ash/accelerators/debug_commands.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/accelerators/debug_commands.h" 5 #include "ash/accelerators/debug_commands.h"
6 6
7 #include "ash/accelerators/accelerator_commands.h" 7 #include "ash/accelerators/accelerator_commands.h"
8 #include "ash/ash_switches.h" 8 #include "ash/ash_switches.h"
9 #include "ash/root_window_controller.h" 9 #include "ash/root_window_controller.h"
10 #include "ash/shell.h" 10 #include "ash/shell.h"
11 #include "ash/shell_delegate.h" 11 #include "ash/shell_delegate.h"
12 #include "ash/system/toast/toast_data.h" 12 #include "ash/system/toast/toast_data.h"
13 #include "ash/system/toast/toast_manager.h" 13 #include "ash/system/toast/toast_manager.h"
14 #include "ash/wallpaper/wallpaper_controller.h" 14 #include "ash/wallpaper/wallpaper_controller.h"
15 #include "ash/wallpaper/wallpaper_delegate.h" 15 #include "ash/wallpaper/wallpaper_delegate.h"
16 #include "ash/wm/maximize_mode/maximize_mode_controller.h" 16 #include "ash/wm/maximize_mode/maximize_mode_controller.h"
17 #include "ash/wm/widget_finder.h" 17 #include "ash/wm/widget_finder.h"
18 #include "ash/wm/window_properties.h" 18 #include "ash/wm/window_properties.h"
19 #include "ash/wm/window_util.h" 19 #include "ash/wm/window_util.h"
20 #include "ash/wm_shell.h"
21 #include "base/command_line.h" 20 #include "base/command_line.h"
22 #include "base/metrics/user_metrics.h" 21 #include "base/metrics/user_metrics.h"
23 #include "base/metrics/user_metrics_action.h" 22 #include "base/metrics/user_metrics_action.h"
24 #include "base/strings/utf_string_conversions.h" 23 #include "base/strings/utf_string_conversions.h"
25 #include "ui/compositor/debug_utils.h" 24 #include "ui/compositor/debug_utils.h"
26 #include "ui/compositor/layer.h" 25 #include "ui/compositor/layer.h"
27 #include "ui/gfx/canvas.h" 26 #include "ui/gfx/canvas.h"
28 #include "ui/gfx/image/image_skia.h" 27 #include "ui/gfx/image/image_skia.h"
29 #include "ui/gfx/image/image_skia_rep.h" 28 #include "ui/gfx/image/image_skia_rep.h"
30 #include "ui/views/debug_utils.h" 29 #include "ui/views/debug_utils.h"
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 case DEBUG_TRIGGER_CRASH: 210 case DEBUG_TRIGGER_CRASH:
212 HandleTriggerCrash(); 211 HandleTriggerCrash();
213 break; 212 break;
214 default: 213 default:
215 break; 214 break;
216 } 215 }
217 } 216 }
218 217
219 } // namespace debug 218 } // namespace debug
220 } // namespace ash 219 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698