Chromium Code Reviews| Index: ui/aura/root_window_host_linux.cc |
| diff --git a/ui/aura/root_window_host_linux.cc b/ui/aura/root_window_host_linux.cc |
| index e3ececade9c853baffd90c200fcbd6bf3bbf3691..56594818116c74e5c48c968472eb8b0f0dc32c52 100644 |
| --- a/ui/aura/root_window_host_linux.cc |
| +++ b/ui/aura/root_window_host_linux.cc |
| @@ -834,6 +834,14 @@ void RootWindowHostLinux::PrepareForShutdown() { |
| base::MessagePumpAuraX11::Current()->RemoveDispatcherForWindow(xwindow_); |
| } |
| +void RootWindowHostLinux::SetHostWindowProperty(const std::string& name, |
| + int value) { |
| + ui::SetIntProperty(xwindow_, |
| + name.c_str(), |
| + name.c_str(), |
|
Daniel Erat
2013/01/30 21:04:27
i think that the type should be CARDINAL instead
oshima
2013/01/30 23:45:53
Done.
|
| + value); |
| +} |
| + |
| bool RootWindowHostLinux::DispatchEventForRootWindow( |
| const base::NativeEvent& event) { |
| switch (event->type) { |