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..cbbf0b54acccceeac731bc985512d48de55d5d38 100644 |
--- a/services/ui/public/cpp/lib/window.cc |
+++ b/services/ui/public/cpp/lib/window.cc |
@@ -472,6 +472,11 @@ std::string Window::GetName() const { |
return std::string(); |
} |
+void Window::SetAcceptEvents(bool accept_events) { |
+ if (client_) |
+ client_->SetAcceptEvents(server_id_, accept_events); |
+} |
+ |
//////////////////////////////////////////////////////////////////////////////// |
// Window, protected: |