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

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

Issue 2434463004: mash: Move directly linked NewWindowDelegate to mojom::NewWindowClient. (Closed)
Patch Set: Actually rename the browser test. Created 4 years, 2 months 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
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 #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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698