| Index: services/ui/public/cpp/lib/window.cc
|
| diff --git a/services/ui/public/cpp/lib/window.cc b/services/ui/public/cpp/lib/window.cc
|
| index 5d74e4554e87846ae99905befe2d9a98c08de17d..ae25fcd96b16f8520db135671fedc7962c8ddcb2 100644
|
| --- a/services/ui/public/cpp/lib/window.cc
|
| +++ b/services/ui/public/cpp/lib/window.cc
|
| @@ -465,6 +465,16 @@ void Window::RequestClose() {
|
| client_->RequestClose(this);
|
| }
|
|
|
| +void Window::PerformWindowMove(mojom::MoveLoopSource source,
|
| + const gfx::Point& cursor_location,
|
| + const base::Callback<void(bool)>& callback) {
|
| + client_->PerformWindowMove(this, source, cursor_location, callback);
|
| +}
|
| +
|
| +void Window::CancelWindowMove() {
|
| + client_->CancelWindowMove(this);
|
| +}
|
| +
|
| std::string Window::GetName() const {
|
| if (HasSharedProperty(mojom::WindowManager::kName_Property))
|
| return GetSharedProperty<std::string>(mojom::WindowManager::kName_Property);
|
|
|