| OLD | NEW |
| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 case DEBUG_TOGGLE_SHOW_DEBUG_BORDERS: | 44 case DEBUG_TOGGLE_SHOW_DEBUG_BORDERS: |
| 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: | |
| 55 case TAKE_PARTIAL_SCREENSHOT: | 54 case TAKE_PARTIAL_SCREENSHOT: |
| 56 case TAKE_SCREENSHOT: | 55 case TAKE_SCREENSHOT: |
| 57 case TAKE_WINDOW_SCREENSHOT: | 56 case TAKE_WINDOW_SCREENSHOT: |
| 58 case TOUCH_HUD_CLEAR: | 57 case TOUCH_HUD_CLEAR: |
| 59 case TOUCH_HUD_MODE_CHANGE: | 58 case TOUCH_HUD_MODE_CHANGE: |
| 60 case UNPIN: | 59 case UNPIN: |
| 61 NOTIMPLEMENTED(); | 60 NOTIMPLEMENTED(); |
| 62 return false; | 61 return false; |
| 63 default: | 62 default: |
| 64 break; | 63 break; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 mash::mojom::LaunchMode::DEFAULT); | 139 mash::mojom::LaunchMode::DEFAULT); |
| 141 break; | 140 break; |
| 142 } | 141 } |
| 143 default: | 142 default: |
| 144 NOTREACHED(); | 143 NOTREACHED(); |
| 145 } | 144 } |
| 146 } | 145 } |
| 147 | 146 |
| 148 } // namespace mus | 147 } // namespace mus |
| 149 } // namespace ash | 148 } // namespace ash |
| OLD | NEW |