blob: 0349d6f1cf4fefb46007d6e99031e3fc45023d55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/test/desktop_test_views_delegate.h"
#include "ui/views/widget/native_widget_mac.h"
namespace views {
DesktopTestViewsDelegate::DesktopTestViewsDelegate() {}
DesktopTestViewsDelegate::~DesktopTestViewsDelegate() {}
void DesktopTestViewsDelegate::OnBeforeWidgetInit(
Widget::InitParams* params,
internal::NativeWidgetDelegate* delegate) {
// If we already have a native_widget, we don't have to try to come
// up with one.
if (params->native_widget)
return;
if (params->parent && params->type != views::Widget::InitParams::TYPE_MENU) {
params->native_widget = new NativeWidgetMac(delegate);
} else if (!params->parent && !params->context) {
NOTIMPLEMENTED();
// TODO(tapted): Implement DesktopNativeWidgetAura.
params->native_widget = new NativeWidgetMac(delegate);
}
}
} // namespace views
|