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 e9be2a5964a038d6fe2c994829f336c036171e6d..ae50ced89687a9537d13f319a5e7d2d3945dfe67 100644 |
--- a/ui/aura/remote_root_window_host_win.cc |
+++ b/ui/aura/remote_root_window_host_win.cc |
@@ -18,6 +18,7 @@ |
#include "ui/base/events/event_utils.h" |
#include "ui/base/keycodes/keyboard_code_conversion_win.h" |
#include "ui/base/view_prop.h" |
+#include "ui/gfx/insets.h" |
#include "ui/metro_viewer/metro_viewer_messages.h" |
namespace aura { |
@@ -246,6 +247,13 @@ void RemoteRootWindowHostWin::SetBounds(const gfx::Rect& bounds) { |
delegate_->OnHostResized(bounds.size()); |
} |
+gfx::Insets RemoteRootWindowHostWin::GetInsets() const { |
+ return gfx::Insets(); |
+} |
+ |
+void RemoteRootWindowHostWin::SetInsets(const gfx::Insets& insets) { |
+} |
+ |
gfx::Point RemoteRootWindowHostWin::GetLocationOnNativeScreen() const { |
return gfx::Point(0, 0); |
} |