Index: views/widget/native_widget_aura.cc |
diff --git a/views/widget/native_widget_aura.cc b/views/widget/native_widget_aura.cc |
index 8da5452a3bda5237fb9ef22eab9ea92d92fbd19f..edf5510f1566768c4a183937eedf944e099c74b8 100644 |
--- a/views/widget/native_widget_aura.cc |
+++ b/views/widget/native_widget_aura.cc |
@@ -521,6 +521,8 @@ void NativeWidgetAura::DispatchKeyEventPostIME(const KeyEvent& key) { |
void NativeWidgetAura::OnBoundsChanged(const gfx::Rect& old_bounds, |
const gfx::Rect& new_bounds) { |
+ if (old_bounds.origin() != new_bounds.origin()) |
+ GetWidget()->widget_delegate()->OnWidgetMove(); |
if (old_bounds.size() != new_bounds.size()) |
delegate_->OnNativeWidgetSizeChanged(new_bounds.size()); |
} |