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

Side by Side Diff: components/exo/wm_helper_mus.cc

Issue 2250863003: exo: Run exo in mus+ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review issues Created 4 years, 4 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 #include "components/exo/wm_helper_mus.h"
6
7 #include "ash/common/display/display_info.h"
8
9 namespace exo {
10
11 ////////////////////////////////////////////////////////////////////////////////
12 // WMHelperMus, public:
13
14 WMHelperMus::WMHelperMus() {}
15
16 WMHelperMus::~WMHelperMus() {}
17
18 ////////////////////////////////////////////////////////////////////////////////
19 // WMHelperMus, private:
20
21 const ash::DisplayInfo WMHelperMus::GetDisplayInfo(int64_t display_id) const {
22 NOTIMPLEMENTED();
23 return ash::DisplayInfo();
24 }
25
26 aura::Window* WMHelperMus::GetContainer(int container_id) {
27 NOTIMPLEMENTED();
28 return nullptr;
29 }
30
31 aura::Window* WMHelperMus::GetActiveWindow() const {
32 NOTIMPLEMENTED();
33 return nullptr;
34 }
35
36 aura::Window* WMHelperMus::GetFocusedWindow() const {
37 NOTIMPLEMENTED();
38 return nullptr;
39 }
40
41 ui::CursorSetType WMHelperMus::GetCursorSet() const {
42 NOTIMPLEMENTED();
43 return ui::CursorSetType::CURSOR_SET_NORMAL;
44 }
45
46 void WMHelperMus::AddPreTargetHandler(ui::EventHandler* handler) {
47 NOTIMPLEMENTED();
48 }
49
50 void WMHelperMus::PrependPreTargetHandler(ui::EventHandler* handler) {
51 NOTIMPLEMENTED();
52 }
53
54 void WMHelperMus::RemovePreTargetHandler(ui::EventHandler* handler) {
55 NOTIMPLEMENTED();
56 }
57
58 void WMHelperMus::AddPostTargetHandler(ui::EventHandler* handler) {
59 NOTIMPLEMENTED();
60 }
61
62 void WMHelperMus::RemovePostTargetHandler(ui::EventHandler* handler) {
63 NOTIMPLEMENTED();
64 }
65
66 bool WMHelperMus::IsMaximizeModeWindowManagerEnabled() const {
67 NOTIMPLEMENTED();
68 return false;
69 }
70
71 } // namespace exo
OLDNEW
« components/exo/wm_helper_mus.h ('K') | « components/exo/wm_helper_mus.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698