| 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_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 NativeWidget* DesktopTestViewsDelegate::CreateNativeWidget( |
| 17 Widget::InitParams::Type type, | 17 Widget::InitParams::Type type, |
| 18 internal::NativeWidgetDelegate* delegate, | 18 internal::NativeWidgetDelegate* delegate, |
| 19 gfx::NativeView parent) { | 19 gfx::NativeView parent) { |
| 20 #if defined(USE_AURA) && !defined(OS_CHROMEOS) | 20 #if defined(USE_AURA) && !defined(OS_CHROMEOS) |
| 21 if (parent && type != views::Widget::InitParams::TYPE_MENU) | 21 if (parent && type != views::Widget::InitParams::TYPE_MENU) |
| 22 return new views::NativeWidgetAura(delegate); | 22 return new views::NativeWidgetAura(delegate); |
| 23 | 23 |
| 24 if (!parent) | 24 if (!parent) |
| 25 return new views::DesktopNativeWidgetAura(delegate); | 25 return new views::DesktopNativeWidgetAura(delegate); |
| 26 #endif | 26 #endif |
| 27 | 27 |
| 28 return NULL; | 28 return NULL; |
| 29 } | 29 } |
| 30 | 30 |
| 31 } // namespace views | 31 } // namespace views |
| OLD | NEW |