| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "views/widget/native_widget_aura.h" | 5 #include "views/widget/native_widget_aura.h" |
| 6 | 6 |
| 7 #include "ui/aura/desktop.h" | 7 #include "ui/aura/desktop.h" |
| 8 #include "ui/aura/event.h" | 8 #include "ui/aura/event.h" |
| 9 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
| 10 #include "ui/gfx/canvas.h" | 10 #include "ui/gfx/canvas.h" |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 const gfx::Rect& restored_bounds) { | 276 const gfx::Rect& restored_bounds) { |
| 277 NOTIMPLEMENTED(); | 277 NOTIMPLEMENTED(); |
| 278 } | 278 } |
| 279 | 279 |
| 280 void NativeWidgetAura::ShowWithWindowState(ui::WindowShowState state) { | 280 void NativeWidgetAura::ShowWithWindowState(ui::WindowShowState state) { |
| 281 window_->Show(); | 281 window_->Show(); |
| 282 NOTIMPLEMENTED(); | 282 NOTIMPLEMENTED(); |
| 283 } | 283 } |
| 284 | 284 |
| 285 bool NativeWidgetAura::IsVisible() const { | 285 bool NativeWidgetAura::IsVisible() const { |
| 286 return window_->visible(); | 286 return window_->IsVisible(); |
| 287 } | 287 } |
| 288 | 288 |
| 289 void NativeWidgetAura::Activate() { | 289 void NativeWidgetAura::Activate() { |
| 290 NOTIMPLEMENTED(); | 290 NOTIMPLEMENTED(); |
| 291 } | 291 } |
| 292 | 292 |
| 293 void NativeWidgetAura::Deactivate() { | 293 void NativeWidgetAura::Deactivate() { |
| 294 NOTIMPLEMENTED(); | 294 NOTIMPLEMENTED(); |
| 295 } | 295 } |
| 296 | 296 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 } | 542 } |
| 543 | 543 |
| 544 // static | 544 // static |
| 545 bool NativeWidgetPrivate::IsMouseButtonDown() { | 545 bool NativeWidgetPrivate::IsMouseButtonDown() { |
| 546 NOTIMPLEMENTED(); | 546 NOTIMPLEMENTED(); |
| 547 return false; | 547 return false; |
| 548 } | 548 } |
| 549 | 549 |
| 550 } // namespace internal | 550 } // namespace internal |
| 551 } // namespace views | 551 } // namespace views |
| OLD | NEW |