Update several WebContentsObserver loading callbacks to use RFH.
[chromium-blink-merge.git] / ash / new_window_delegate.h
blob57319af1bf0ec6b19959edec362b7fffd5311444
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
3 // found in the LICENSE file.
5 #ifndef ASH_NEW_WINDOW_DELEGATE_H_
6 #define ASH_NEW_WINDOW_DELEGATE_H_
8 namespace ash {
10 // A delegate class to create or open windows that are not a part of
11 // ash.
12 class NewWindowDelegate {
13 public:
14 virtual ~NewWindowDelegate() {}
16 // Invoked when the user uses Ctrl+T to open a new tab.
17 virtual void NewTab() = 0;
19 // Invoked when the user uses Ctrl-N or Ctrl-Shift-N to open a new window.
20 virtual void NewWindow(bool incognito) = 0;
22 // Invoked when an accelerator is used to open the file manager.
23 virtual void OpenFileManager() = 0;
25 // Invoked when the user opens Crosh.
26 virtual void OpenCrosh() = 0;
28 // Invoked when the user uses Shift+Ctrl+T to restore the closed tab.
29 virtual void RestoreTab() = 0;
31 // Shows the keyboard shortcut overlay.
32 virtual void ShowKeyboardOverlay() = 0;
34 // Shows the task manager window.
35 virtual void ShowTaskManager() = 0;
37 // Opens the feedback page for "Report Issue".
38 virtual void OpenFeedbackPage() = 0;
41 } // namespace ash
43 #endif // ASH_NEW_WINDOW_DELEGATE_H_