Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: ui/views/test/desktop_test_views_delegate.cc

Issue 11758002: Desktop aura: Expand what the ViewsDelegate can do to new windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't clobber native_widget Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/views/test/desktop_test_views_delegate.h ('k') | ui/views/test/test_views_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
OLDNEW
« no previous file with comments | « ui/views/test/desktop_test_views_delegate.h ('k') | ui/views/test/test_views_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698