| 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 #ifndef ASH_MUS_ACCELERATORS_ACCELERATOR_CONTROLLER_DELEGATE_MUS_H_ | 5 #ifndef ASH_MUS_ACCELERATORS_ACCELERATOR_CONTROLLER_DELEGATE_MUS_H_ |
| 6 #define ASH_MUS_ACCELERATORS_ACCELERATOR_CONTROLLER_DELEGATE_MUS_H_ | 6 #define ASH_MUS_ACCELERATORS_ACCELERATOR_CONTROLLER_DELEGATE_MUS_H_ |
| 7 | 7 |
| 8 #include "ash/common/accelerators/accelerator_controller_delegate.h" | 8 #include "ash/accelerators/accelerator_controller_delegate.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 | 10 |
| 11 namespace ash { | 11 namespace ash { |
| 12 namespace mus { | 12 namespace mus { |
| 13 | 13 |
| 14 class WindowManager; | 14 class WindowManager; |
| 15 | 15 |
| 16 // Controls accelerators that are specific to mash. | 16 // Controls accelerators that are specific to mash. |
| 17 class AcceleratorControllerDelegateMus : public AcceleratorControllerDelegate { | 17 class AcceleratorControllerDelegateMus : public AcceleratorControllerDelegate { |
| 18 public: | 18 public: |
| (...skipping 15 matching lines...) Expand all Loading... |
| 34 private: | 34 private: |
| 35 WindowManager* window_manager_; | 35 WindowManager* window_manager_; |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(AcceleratorControllerDelegateMus); | 37 DISALLOW_COPY_AND_ASSIGN(AcceleratorControllerDelegateMus); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 } // namespace mus | 40 } // namespace mus |
| 41 } // namespace ash | 41 } // namespace ash |
| 42 | 42 |
| 43 #endif // ASH_MUS_ACCELERATORS_ACCELERATOR_CONTROLLER_DELEGATE_MUS_H_ | 43 #endif // ASH_MUS_ACCELERATORS_ACCELERATOR_CONTROLLER_DELEGATE_MUS_H_ |
| OLD | NEW |