1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/views/test/test_views_delegate.h"
7 #include "ui/views/widget/native_widget_mac.h"
11 TestViewsDelegate::TestViewsDelegate()
12 : context_factory_(nullptr),
13 use_desktop_native_widgets_(false),
14 use_transparent_windows_(false) {
17 TestViewsDelegate::~TestViewsDelegate() {
20 void TestViewsDelegate::OnBeforeWidgetInit(
21 Widget::InitParams* params,
22 internal::NativeWidgetDelegate* delegate) {
23 if (params->opacity == Widget::InitParams::INFER_OPACITY) {
24 params->opacity = use_transparent_windows_ ?
25 Widget::InitParams::TRANSLUCENT_WINDOW :
26 Widget::InitParams::OPAQUE_WINDOW;
28 // TODO(tapted): This should return a *Desktop*NativeWidgetMac.
29 if (!params->native_widget && use_desktop_native_widgets_)
30 params->native_widget = new NativeWidgetMac(delegate);
33 ui::ContextFactory* TestViewsDelegate::GetContextFactory() {
34 return context_factory_;