OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ui/views/test/desktop_test_views_delegate.h" | 5 #include "ui/views/test/desktop_test_views_delegate.h" |
6 | 6 |
7 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" | 7 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" |
8 #include "ui/views/widget/native_widget_aura.h" | 8 #include "ui/views/widget/native_widget_aura.h" |
9 | 9 |
10 namespace views { | 10 namespace views { |
11 | 11 |
12 DesktopTestViewsDelegate::DesktopTestViewsDelegate() {} | 12 DesktopTestViewsDelegate::DesktopTestViewsDelegate() {} |
13 | 13 |
14 DesktopTestViewsDelegate::~DesktopTestViewsDelegate() {} | 14 DesktopTestViewsDelegate::~DesktopTestViewsDelegate() {} |
15 | 15 |
16 NativeWidget* DesktopTestViewsDelegate::CreateNativeWidget( | 16 void DesktopTestViewsDelegate::OnBeforeWidgetInit( |
17 Widget::InitParams::Type type, | 17 Widget::InitParams* params, |
18 internal::NativeWidgetDelegate* delegate, | 18 internal::NativeWidgetDelegate* delegate) { |
19 gfx::NativeView parent, | |
20 gfx::NativeView context) { | |
21 #if defined(USE_AURA) && !defined(OS_CHROMEOS) | 19 #if defined(USE_AURA) && !defined(OS_CHROMEOS) |
22 if (parent && type != views::Widget::InitParams::TYPE_MENU) | 20 // If we already have a native_widget, we don't have to try to come |
23 return new views::NativeWidgetAura(delegate); | 21 // up with one. |
| 22 if (params->native_widget) |
| 23 return; |
24 | 24 |
25 if (!parent && !context) | 25 if (params->parent && params->type != views::Widget::InitParams::TYPE_MENU) { |
26 return new views::DesktopNativeWidgetAura(delegate); | 26 params->native_widget = new views::NativeWidgetAura(delegate); |
| 27 } else if (!params->parent && !params->context) { |
| 28 params->native_widget = new views::DesktopNativeWidgetAura(delegate); |
| 29 } |
27 #endif | 30 #endif |
28 | |
29 return NULL; | |
30 } | 31 } |
31 | 32 |
32 } // namespace views | 33 } // namespace views |
OLD | NEW |