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

Unified Diff: ui/aura/remote_root_window_host_win.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/remote_root_window_host_win.cc
diff --git a/ui/aura/remote_root_window_host_win.cc b/ui/aura/remote_root_window_host_win.cc
index 18c1eed39e2060df0814ee1e959c7e5962337368..f785b6af66cf41f47fcf0f911b45dabe0c87605a 100644
--- a/ui/aura/remote_root_window_host_win.cc
+++ b/ui/aura/remote_root_window_host_win.cc
@@ -186,6 +186,10 @@ void RemoteRootWindowHostWin::OnDeviceScaleFactorChanged(
void RemoteRootWindowHostWin::PrepareForShutdown() {
}
+void RemoteRootWindowHostWin::SetHostWindowProperty(const std::string& name,
+ int value) {
Daniel Erat 2013/01/30 21:04:27 nit: NOTIMPLEMENTED()
oshima 2013/01/30 23:45:53 I used to put NOTIMPLEMENTED for blank method, but
Daniel Erat 2013/01/30 23:52:45 I think it makes sense to use NOTIMPLEMENTED() eve
oshima 2013/01/31 00:04:56 Ok, NOTREACHED makes sense for this case. I just t
+}
+
void RemoteRootWindowHostWin::OnMouseMoved(int32 x, int32 y, int32 flags) {
gfx::Point location(x, y);
ui::MouseEvent event(ui::ET_MOUSE_MOVED, location, location, flags);

Powered by Google App Engine
This is Rietveld 408576698