Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_NEW_WINDOW_DELEGATE_H_ | 5 #ifndef ASH_NEW_WINDOW_DELEGATE_H_ |
| 6 #define ASH_NEW_WINDOW_DELEGATE_H_ | 6 #define ASH_NEW_WINDOW_DELEGATE_H_ |
| 7 | 7 |
| 8 namespace ash { | 8 namespace ash { |
| 9 | 9 |
| 10 // A delegate class to create or open windows that are not a part of | 10 // A delegate class to create or open windows that are not a part of |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 32 virtual void RestoreTab() = 0; | 32 virtual void RestoreTab() = 0; |
| 33 | 33 |
| 34 // Shows the keyboard shortcut overlay. | 34 // Shows the keyboard shortcut overlay. |
| 35 virtual void ShowKeyboardOverlay() = 0; | 35 virtual void ShowKeyboardOverlay() = 0; |
| 36 | 36 |
| 37 // Shows the task manager window. | 37 // Shows the task manager window. |
| 38 virtual void ShowTaskManager() = 0; | 38 virtual void ShowTaskManager() = 0; |
| 39 | 39 |
| 40 // Opens the feedback page for "Report Issue". | 40 // Opens the feedback page for "Report Issue". |
| 41 virtual void OpenFeedbackPage() = 0; | 41 virtual void OpenFeedbackPage() = 0; |
| 42 | |
| 43 // Invoked when the user opens Network Diag. | |
|
sky
2016/07/21 19:30:54
diag? Dialog.
| |
| 44 virtual void OpenNetworkDiag() = 0; | |
| 42 }; | 45 }; |
| 43 | 46 |
| 44 } // namespace ash | 47 } // namespace ash |
| 45 | 48 |
| 46 #endif // ASH_NEW_WINDOW_DELEGATE_H_ | 49 #endif // ASH_NEW_WINDOW_DELEGATE_H_ |
| OLD | NEW |