| 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 "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace ash { | 9 namespace ash { |
| 10 namespace mus { | 10 namespace mus { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 case DEBUG_TOGGLE_SHOW_FPS_COUNTER: | 26 case DEBUG_TOGGLE_SHOW_FPS_COUNTER: |
| 27 case DEBUG_TOGGLE_SHOW_PAINT_RECTS: | 27 case DEBUG_TOGGLE_SHOW_PAINT_RECTS: |
| 28 case DEBUG_TOGGLE_WALLPAPER_MODE: | 28 case DEBUG_TOGGLE_WALLPAPER_MODE: |
| 29 case MAGNIFY_SCREEN_ZOOM_IN: | 29 case MAGNIFY_SCREEN_ZOOM_IN: |
| 30 case MAGNIFY_SCREEN_ZOOM_OUT: | 30 case MAGNIFY_SCREEN_ZOOM_OUT: |
| 31 case ROTATE_SCREEN: | 31 case ROTATE_SCREEN: |
| 32 case ROTATE_WINDOW: | 32 case ROTATE_WINDOW: |
| 33 case SCALE_UI_DOWN: | 33 case SCALE_UI_DOWN: |
| 34 case SCALE_UI_RESET: | 34 case SCALE_UI_RESET: |
| 35 case SCALE_UI_UP: | 35 case SCALE_UI_UP: |
| 36 case SHOW_MESSAGE_CENTER_BUBBLE: | |
| 37 case SHOW_SYSTEM_TRAY_BUBBLE: | 36 case SHOW_SYSTEM_TRAY_BUBBLE: |
| 38 case TAKE_PARTIAL_SCREENSHOT: | 37 case TAKE_PARTIAL_SCREENSHOT: |
| 39 case TAKE_SCREENSHOT: | 38 case TAKE_SCREENSHOT: |
| 40 case TAKE_WINDOW_SCREENSHOT: | 39 case TAKE_WINDOW_SCREENSHOT: |
| 41 case UNPIN: | 40 case UNPIN: |
| 42 NOTIMPLEMENTED(); | 41 NOTIMPLEMENTED(); |
| 43 return false; | 42 return false; |
| 44 | 43 |
| 45 #if defined(OS_CHROMEOS) | 44 #if defined(OS_CHROMEOS) |
| 46 case DEBUG_ADD_REMOVE_DISPLAY: | 45 case DEBUG_ADD_REMOVE_DISPLAY: |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 const char* const notification_id, | 82 const char* const notification_id, |
| 84 int message_id, | 83 int message_id, |
| 85 int old_shortcut_id, | 84 int old_shortcut_id, |
| 86 int new_shortcut_id) { | 85 int new_shortcut_id) { |
| 87 // TODO: http://crbug.com/630316. | 86 // TODO: http://crbug.com/630316. |
| 88 NOTIMPLEMENTED(); | 87 NOTIMPLEMENTED(); |
| 89 } | 88 } |
| 90 | 89 |
| 91 } // namespace mus | 90 } // namespace mus |
| 92 } // namespace ash | 91 } // namespace ash |
| OLD | NEW |