Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(434)

Unified Diff: ui/aura/root_window.cc

Issue 12047111: Set scale/orientation property to aura root window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698