| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ASH_MUS_NEW_WINDOW_DELEGATE_MUS_H_ | |
| 6 #define ASH_MUS_NEW_WINDOW_DELEGATE_MUS_H_ | |
| 7 | |
| 8 #include "ash/common/new_window_delegate.h" | |
| 9 #include "base/macros.h" | |
| 10 | |
| 11 namespace ash { | |
| 12 namespace mus { | |
| 13 | |
| 14 class NewWindowDelegateMus : public NewWindowDelegate { | |
| 15 public: | |
| 16 NewWindowDelegateMus(); | |
| 17 ~NewWindowDelegateMus() override; | |
| 18 | |
| 19 // NewWindowDelegate: | |
| 20 void NewTab() override; | |
| 21 void NewWindow(bool incognito) override; | |
| 22 void OpenFileManager() override; | |
| 23 void OpenCrosh() override; | |
| 24 void OpenGetHelp() override; | |
| 25 void RestoreTab() override; | |
| 26 void ShowKeyboardOverlay() override; | |
| 27 void ShowTaskManager() override; | |
| 28 void OpenFeedbackPage() override; | |
| 29 | |
| 30 private: | |
| 31 DISALLOW_COPY_AND_ASSIGN(NewWindowDelegateMus); | |
| 32 }; | |
| 33 | |
| 34 } // namespace mus | |
| 35 } // namespace ash | |
| 36 | |
| 37 #endif // ASH_MUS_NEW_WINDOW_DELEGATE_MUS_H_ | |
| OLD | NEW |