Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: ash/public/interfaces/new_window.mojom

Issue 2434463004: mash: Move directly linked NewWindowDelegate to mojom::NewWindowClient. (Closed)
Patch Set: Rebase to ToT Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/public/interfaces/BUILD.gn ('k') | ash/shell/shell_delegate_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 module ash.mojom;
6
7 // A delegate interface delegate to create or open windows that are not part of
8 // ash.
9 interface NewWindowClient {
10 // Invoked when the user uses Ctrl+T to open a new tab.
11 NewTab();
12
13 // Invoked when the user uses Ctrl-N or Ctrl-Shift-N to open a new window.
14 NewWindow(bool incognito);
15
16 // Invoked when an accelerator is used to open the file manager.
17 OpenFileManager();
18
19 // Invoked when the user opens Crosh.
20 OpenCrosh();
21
22 // Invoked when an accelerator is used to open help center.
23 OpenGetHelp();
24
25 // Invoked when the user uses Shift+Ctrl+T to restore the closed tab.
26 RestoreTab();
27
28 // Shows the keyboard shortcut overlay.
29 ShowKeyboardOverlay();
30
31 // Shows the task manager window.
32 ShowTaskManager();
33
34 // Opens the feedback page for "Report Issue".
35 OpenFeedbackPage();
36 };
OLDNEW
« no previous file with comments | « ash/public/interfaces/BUILD.gn ('k') | ash/shell/shell_delegate_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698