| 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_shelf_mus.h" | 5 #include "ash/mus/bridge/wm_shelf_mus.h" |
| 6 | 6 |
| 7 #include "ash/mus/bridge/wm_window_mus.h" | 7 #include "ash/mus/bridge/wm_window_mus.h" |
| 8 #include "ash/mus/shelf_layout_manager.h" | 8 #include "ash/mus/shelf_layout_manager.h" |
| 9 #include "components/mus/public/cpp/window.h" | 9 #include "components/mus/public/cpp/window.h" |
| 10 | 10 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 gfx::Rect WmShelfMus::GetIdealBounds() { | 95 gfx::Rect WmShelfMus::GetIdealBounds() { |
| 96 NOTIMPLEMENTED(); | 96 NOTIMPLEMENTED(); |
| 97 return gfx::Rect(); | 97 return gfx::Rect(); |
| 98 } | 98 } |
| 99 | 99 |
| 100 gfx::Rect WmShelfMus::GetScreenBoundsOfItemIconForWindow(WmWindow* window) { | 100 gfx::Rect WmShelfMus::GetScreenBoundsOfItemIconForWindow(WmWindow* window) { |
| 101 NOTIMPLEMENTED(); | 101 NOTIMPLEMENTED(); |
| 102 return gfx::Rect(); | 102 return gfx::Rect(); |
| 103 } | 103 } |
| 104 | 104 |
| 105 bool WmShelfMus::ProcessGestureEvent(const ui::GestureEvent& event, |
| 106 WmWindow* target_window) { |
| 107 NOTIMPLEMENTED(); |
| 108 return false; |
| 109 } |
| 110 |
| 105 void WmShelfMus::UpdateAutoHideForMouseEvent(ui::MouseEvent* event) { | 111 void WmShelfMus::UpdateAutoHideForMouseEvent(ui::MouseEvent* event) { |
| 106 NOTIMPLEMENTED(); | 112 NOTIMPLEMENTED(); |
| 107 } | 113 } |
| 108 | 114 |
| 109 void WmShelfMus::UpdateAutoHideForGestureEvent(ui::GestureEvent* event) { | 115 void WmShelfMus::UpdateAutoHideForGestureEvent(ui::GestureEvent* event) { |
| 110 NOTIMPLEMENTED(); | 116 NOTIMPLEMENTED(); |
| 111 } | 117 } |
| 112 | 118 |
| 113 void WmShelfMus::AddObserver(WmShelfObserver* observer) { | 119 void WmShelfMus::AddObserver(WmShelfObserver* observer) { |
| 114 observers_.AddObserver(observer); | 120 observers_.AddObserver(observer); |
| 115 } | 121 } |
| 116 | 122 |
| 117 void WmShelfMus::RemoveObserver(WmShelfObserver* observer) { | 123 void WmShelfMus::RemoveObserver(WmShelfObserver* observer) { |
| 118 observers_.RemoveObserver(observer); | 124 observers_.RemoveObserver(observer); |
| 119 } | 125 } |
| 120 | 126 |
| 121 void WmShelfMus::SetKeyboardBoundsForTesting(const gfx::Rect& bounds) { | 127 void WmShelfMus::SetKeyboardBoundsForTesting(const gfx::Rect& bounds) { |
| 122 NOTIMPLEMENTED(); | 128 NOTIMPLEMENTED(); |
| 123 } | 129 } |
| 124 | 130 |
| 125 } // namespace mus | 131 } // namespace mus |
| 126 } // namespace ash | 132 } // namespace ash |
| OLD | NEW |