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

Side by Side Diff: ash/mus/accelerators/accelerator_controller_delegate_mus.cc

Issue 2752643002: chromeos: Enable Alt-Shift-S to show system tray bubble for mash (Closed)
Patch Set: Created 3 years, 9 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/mus/accelerators/accelerator_controller_delegate_mus.h" 5 #include "ash/mus/accelerators/accelerator_controller_delegate_mus.h"
6 6
7 #include "ash/mus/window_manager.h" 7 #include "ash/mus/window_manager.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "mash/public/interfaces/launchable.mojom.h" 9 #include "mash/public/interfaces/launchable.mojom.h"
10 #include "services/service_manager/public/cpp/connector.h" 10 #include "services/service_manager/public/cpp/connector.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 case DEBUG_TOGGLE_SHOW_FPS_COUNTER: 45 case DEBUG_TOGGLE_SHOW_FPS_COUNTER:
46 case DEBUG_TOGGLE_SHOW_PAINT_RECTS: 46 case DEBUG_TOGGLE_SHOW_PAINT_RECTS:
47 case DEV_TOGGLE_ROOT_WINDOW_FULL_SCREEN: 47 case DEV_TOGGLE_ROOT_WINDOW_FULL_SCREEN:
48 case LOCK_PRESSED: 48 case LOCK_PRESSED:
49 case LOCK_RELEASED: 49 case LOCK_RELEASED:
50 case MAGNIFY_SCREEN_ZOOM_IN: 50 case MAGNIFY_SCREEN_ZOOM_IN:
51 case MAGNIFY_SCREEN_ZOOM_OUT: 51 case MAGNIFY_SCREEN_ZOOM_OUT:
52 case POWER_PRESSED: 52 case POWER_PRESSED:
53 case POWER_RELEASED: 53 case POWER_RELEASED:
54 case ROTATE_WINDOW: 54 case ROTATE_WINDOW:
55 case SHOW_SYSTEM_TRAY_BUBBLE:
56 case TAKE_PARTIAL_SCREENSHOT: 55 case TAKE_PARTIAL_SCREENSHOT:
57 case TAKE_SCREENSHOT: 56 case TAKE_SCREENSHOT:
58 case TAKE_WINDOW_SCREENSHOT: 57 case TAKE_WINDOW_SCREENSHOT:
59 case TOUCH_HUD_CLEAR: 58 case TOUCH_HUD_CLEAR:
60 case TOUCH_HUD_MODE_CHANGE: 59 case TOUCH_HUD_MODE_CHANGE:
61 case UNPIN: 60 case UNPIN:
62 NOTIMPLEMENTED(); 61 NOTIMPLEMENTED();
63 return false; 62 return false;
64 default: 63 default:
65 break; 64 break;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 const char* const notification_id, 149 const char* const notification_id,
151 int message_id, 150 int message_id,
152 int old_shortcut_id, 151 int old_shortcut_id,
153 int new_shortcut_id) { 152 int new_shortcut_id) {
154 // TODO: http://crbug.com/630316. 153 // TODO: http://crbug.com/630316.
155 NOTIMPLEMENTED(); 154 NOTIMPLEMENTED();
156 } 155 }
157 156
158 } // namespace mus 157 } // namespace mus
159 } // namespace ash 158 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698