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

Side by Side Diff: ash/accelerators/accelerator_controller.cc

Issue 1921353002: Moves handful of files to ash/wm/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shell_ids
Patch Set: merge to trunk Created 4 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/accelerators/accelerator_controller.h" 5 #include "ash/accelerators/accelerator_controller.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 28 matching lines...) Expand all
39 #include "ash/system/keyboard_brightness/keyboard_brightness_control_delegate.h" 39 #include "ash/system/keyboard_brightness/keyboard_brightness_control_delegate.h"
40 #include "ash/system/status_area_widget.h" 40 #include "ash/system/status_area_widget.h"
41 #include "ash/system/system_notifier.h" 41 #include "ash/system/system_notifier.h"
42 #include "ash/system/tray/system_tray.h" 42 #include "ash/system/tray/system_tray.h"
43 #include "ash/system/tray/system_tray_delegate.h" 43 #include "ash/system/tray/system_tray_delegate.h"
44 #include "ash/system/tray/system_tray_notifier.h" 44 #include "ash/system/tray/system_tray_notifier.h"
45 #include "ash/system/web_notification/web_notification_tray.h" 45 #include "ash/system/web_notification/web_notification_tray.h"
46 #include "ash/touch/touch_hud_debug.h" 46 #include "ash/touch/touch_hud_debug.h"
47 #include "ash/utility/partial_screenshot_controller.h" 47 #include "ash/utility/partial_screenshot_controller.h"
48 #include "ash/volume_control_delegate.h" 48 #include "ash/volume_control_delegate.h"
49 #include "ash/wm/common/window_state.h"
49 #include "ash/wm/common/wm_event.h" 50 #include "ash/wm/common/wm_event.h"
50 #include "ash/wm/maximize_mode/maximize_mode_controller.h" 51 #include "ash/wm/maximize_mode/maximize_mode_controller.h"
51 #include "ash/wm/mru_window_tracker.h" 52 #include "ash/wm/mru_window_tracker.h"
52 #include "ash/wm/overview/window_selector_controller.h" 53 #include "ash/wm/overview/window_selector_controller.h"
53 #include "ash/wm/power_button_controller.h" 54 #include "ash/wm/power_button_controller.h"
54 #include "ash/wm/window_cycle_controller.h" 55 #include "ash/wm/window_cycle_controller.h"
55 #include "ash/wm/window_state.h"
56 #include "ash/wm/window_state_aura.h" 56 #include "ash/wm/window_state_aura.h"
57 #include "ash/wm/window_util.h" 57 #include "ash/wm/window_util.h"
58 #include "base/bind.h" 58 #include "base/bind.h"
59 #include "base/command_line.h" 59 #include "base/command_line.h"
60 #include "base/metrics/histogram_macros.h" 60 #include "base/metrics/histogram_macros.h"
61 #include "base/metrics/user_metrics.h" 61 #include "base/metrics/user_metrics.h"
62 #include "base/strings/string_split.h" 62 #include "base/strings/string_split.h"
63 #include "base/strings/utf_string_conversions.h" 63 #include "base/strings/utf_string_conversions.h"
64 #include "ui/aura/env.h" 64 #include "ui/aura/env.h"
65 #include "ui/base/accelerators/accelerator.h" 65 #include "ui/base/accelerators/accelerator.h"
(...skipping 1377 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 } 1443 }
1444 1444
1445 void AcceleratorController::SetKeyboardBrightnessControlDelegate( 1445 void AcceleratorController::SetKeyboardBrightnessControlDelegate(
1446 std::unique_ptr<KeyboardBrightnessControlDelegate> 1446 std::unique_ptr<KeyboardBrightnessControlDelegate>
1447 keyboard_brightness_control_delegate) { 1447 keyboard_brightness_control_delegate) {
1448 keyboard_brightness_control_delegate_ = 1448 keyboard_brightness_control_delegate_ =
1449 std::move(keyboard_brightness_control_delegate); 1449 std::move(keyboard_brightness_control_delegate);
1450 } 1450 }
1451 1451
1452 } // namespace ash 1452 } // namespace ash
OLDNEW
« no previous file with comments | « ash/accelerators/accelerator_commands_unittest.cc ('k') | ash/accelerators/accelerator_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698