Index: ui/aura/root_window.cc |
diff --git a/ui/aura/root_window.cc b/ui/aura/root_window.cc |
index fa7760f51e49d8b9b8f251ed79ddf460fcfa3d26..9d53d437489fe0e0f7142136ef64915f8392e2cd 100644 |
--- a/ui/aura/root_window.cc |
+++ b/ui/aura/root_window.cc |
@@ -213,6 +213,10 @@ void RootWindow::SetCursor(gfx::NativeCursor cursor) { |
host_->SetCursor(cursor); |
} |
+void RootWindow::SetHostWindowIntProperty(const std::string& name, int value) { |
+ host_->SetIntProperty(name, value); |
+} |
+ |
void RootWindow::OnCursorVisibilityChanged(bool show) { |
host_->OnCursorVisibilityChanged(show); |
} |