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/event.h" | 7 #include "ui/aura/event.h" |
8 #include "ui/aura/window.h" | 8 #include "ui/aura/window.h" |
9 #include "ui/gfx/canvas.h" | 9 #include "ui/gfx/canvas.h" |
10 #include "ui/gfx/compositor/layer.h" | 10 #include "ui/gfx/compositor/layer.h" |
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 void NativeWidgetAura::FocusNativeView(gfx::NativeView native_view) { | 355 void NativeWidgetAura::FocusNativeView(gfx::NativeView native_view) { |
356 NOTIMPLEMENTED(); | 356 NOTIMPLEMENTED(); |
357 } | 357 } |
358 | 358 |
359 bool NativeWidgetAura::ConvertPointFromAncestor(const Widget* ancestor, | 359 bool NativeWidgetAura::ConvertPointFromAncestor(const Widget* ancestor, |
360 gfx::Point* point) const { | 360 gfx::Point* point) const { |
361 NOTIMPLEMENTED(); | 361 NOTIMPLEMENTED(); |
362 return false; | 362 return false; |
363 } | 363 } |
364 | 364 |
365 gfx::Rect NativeWidgetAura::GetWorkAreaBoundsInScreen() const { | |
366 return gfx::Rect(); | |
367 } | |
368 | |
369 //////////////////////////////////////////////////////////////////////////////// | 365 //////////////////////////////////////////////////////////////////////////////// |
370 // NativeWidgetAura, views::InputMethodDelegate implementation: | 366 // NativeWidgetAura, views::InputMethodDelegate implementation: |
371 | 367 |
372 void NativeWidgetAura::DispatchKeyEventPostIME(const KeyEvent& key) { | 368 void NativeWidgetAura::DispatchKeyEventPostIME(const KeyEvent& key) { |
373 NOTIMPLEMENTED(); | 369 NOTIMPLEMENTED(); |
374 } | 370 } |
375 | 371 |
376 //////////////////////////////////////////////////////////////////////////////// | 372 //////////////////////////////////////////////////////////////////////////////// |
377 // NativeWidgetAura, aura::WindowDelegate implementation: | 373 // NativeWidgetAura, aura::WindowDelegate implementation: |
378 | 374 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 } | 475 } |
480 | 476 |
481 // static | 477 // static |
482 bool NativeWidgetPrivate::IsMouseButtonDown() { | 478 bool NativeWidgetPrivate::IsMouseButtonDown() { |
483 NOTIMPLEMENTED(); | 479 NOTIMPLEMENTED(); |
484 return false; | 480 return false; |
485 } | 481 } |
486 | 482 |
487 } // namespace internal | 483 } // namespace internal |
488 } // namespace views | 484 } // namespace views |
OLD | NEW |