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

Side by Side Diff: ash/mus/new_window_delegate_mus.cc

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/mus/new_window_delegate_mus.h ('k') | ash/mus/shell_delegate_mus.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 #include "ash/mus/new_window_delegate_mus.h"
6
7 #include "base/logging.h"
8 #include "services/service_manager/public/cpp/connector.h"
9
10 namespace ash {
11 namespace mus {
12
13 NewWindowDelegateMus::NewWindowDelegateMus() {}
14
15 NewWindowDelegateMus::~NewWindowDelegateMus() {}
16
17 void NewWindowDelegateMus::NewTab() {
18 // TODO: http://crbug.com/631836.
19 NOTIMPLEMENTED();
20 }
21
22 void NewWindowDelegateMus::NewWindow(bool incognito) {
23 // TODO: http://crbug.com/631836.
24 NOTIMPLEMENTED();
25 }
26
27 void NewWindowDelegateMus::OpenFileManager() {
28 // TODO: http://crbug.com/631836.
29 NOTIMPLEMENTED();
30 }
31
32 void NewWindowDelegateMus::OpenCrosh() {
33 // TODO: http://crbug.com/631836.
34 NOTIMPLEMENTED();
35 }
36
37 void NewWindowDelegateMus::OpenGetHelp() {
38 // TODO: http://crbug.com/631836.
39 NOTIMPLEMENTED();
40 }
41
42 void NewWindowDelegateMus::RestoreTab() {
43 // TODO: http://crbug.com/631836.
44 NOTIMPLEMENTED();
45 }
46
47 void NewWindowDelegateMus::ShowKeyboardOverlay() {
48 // TODO: http://crbug.com/647433.
49 NOTIMPLEMENTED();
50 }
51
52 void NewWindowDelegateMus::ShowTaskManager() {
53 // TODO: http://crbug.com/631836.
54 NOTIMPLEMENTED();
55 }
56
57 void NewWindowDelegateMus::OpenFeedbackPage() {
58 // TODO: http://crbug.com/631836.
59 NOTIMPLEMENTED();
60 }
61
62 } // namespace mus
63 } // namespace ash
OLDNEW
« no previous file with comments | « ash/mus/new_window_delegate_mus.h ('k') | ash/mus/shell_delegate_mus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698