diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/widget/native_widget_aura.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/views/widget/native_widget_aura.cc b/views/widget/native_widget_aura.cc index cc1baa1..4388d64 100644 --- a/views/widget/native_widget_aura.cc +++ b/views/widget/native_widget_aura.cc @@ -259,17 +259,18 @@ void NativeWidgetAura::BecomeModal() { } gfx::Rect NativeWidgetAura::GetWindowScreenBounds() const { - // TODO(beng): ensure screen bounds - return window_->bounds(); + return window_->GetScreenBounds(); } gfx::Rect NativeWidgetAura::GetClientAreaScreenBounds() const { // TODO(beng): - return window_->bounds(); + NOTIMPLEMENTED(); + return window_->GetScreenBounds(); } gfx::Rect NativeWidgetAura::GetRestoredBounds() const { // TODO(beng): + NOTIMPLEMENTED(); return window_->bounds(); } |