OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/mus/bridge/wm_shell_mus.h" | 5 #include "ash/mus/bridge/wm_shell_mus.h" |
6 | 6 |
7 #include "ash/common/default_accessibility_delegate.h" | 7 #include "ash/common/default_accessibility_delegate.h" |
8 #include "ash/common/session/session_state_delegate.h" | 8 #include "ash/common/session/session_state_delegate.h" |
9 #include "ash/common/shell_observer.h" | 9 #include "ash/common/shell_observer.h" |
10 #include "ash/common/shell_window_ids.h" | 10 #include "ash/common/shell_window_ids.h" |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 WmWindow* WmShellMus::GetRootWindowForNewWindows() { | 175 WmWindow* WmShellMus::GetRootWindowForNewWindows() { |
176 NOTIMPLEMENTED(); | 176 NOTIMPLEMENTED(); |
177 return root_window_controllers_[0]->GetWindow(); | 177 return root_window_controllers_[0]->GetWindow(); |
178 } | 178 } |
179 | 179 |
180 bool WmShellMus::IsForceMaximizeOnFirstRun() { | 180 bool WmShellMus::IsForceMaximizeOnFirstRun() { |
181 NOTIMPLEMENTED(); | 181 NOTIMPLEMENTED(); |
182 return false; | 182 return false; |
183 } | 183 } |
184 | 184 |
| 185 bool WmShellMus::IsPinned() { |
| 186 NOTIMPLEMENTED(); |
| 187 return false; |
| 188 } |
| 189 |
185 bool WmShellMus::CanShowWindowForUser(WmWindow* window) { | 190 bool WmShellMus::CanShowWindowForUser(WmWindow* window) { |
186 NOTIMPLEMENTED(); | 191 NOTIMPLEMENTED(); |
187 return true; | 192 return true; |
188 } | 193 } |
189 | 194 |
190 void WmShellMus::LockCursor() { | 195 void WmShellMus::LockCursor() { |
191 NOTIMPLEMENTED(); | 196 NOTIMPLEMENTED(); |
192 } | 197 } |
193 | 198 |
194 void WmShellMus::UnlockCursor() { | 199 void WmShellMus::UnlockCursor() { |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 OnWindowActivated(gained_active, lost_active)); | 300 OnWindowActivated(gained_active, lost_active)); |
296 } | 301 } |
297 | 302 |
298 void WmShellMus::OnWillDestroyClient(::mus::WindowTreeClient* client) { | 303 void WmShellMus::OnWillDestroyClient(::mus::WindowTreeClient* client) { |
299 DCHECK_EQ(client, client_); | 304 DCHECK_EQ(client, client_); |
300 RemoveClientObserver(); | 305 RemoveClientObserver(); |
301 } | 306 } |
302 | 307 |
303 } // namespace mus | 308 } // namespace mus |
304 } // namespace ash | 309 } // namespace ash |
OLD | NEW |