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

Side by Side Diff: ui/views/test/test_views_delegate_mac.mm

Issue 2563783002: ui + mus: Split ContextFactory into ContextFactory(Client) and ContextFactoryPrivate (Closed)
Patch Set: Restore mash Created 4 years 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
« no previous file with comments | « ui/views/test/test_views_delegate_aura.cc ('k') | ui/views/test/views_test_helper.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 2014 The Chromium Authors. All rights reserved. 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 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/test_views_delegate.h" 5 #include "ui/views/test/test_views_delegate.h"
6 6
7 #include "ui/views/widget/native_widget_mac.h" 7 #include "ui/views/widget/native_widget_mac.h"
8 8
9 namespace views { 9 namespace views {
10 10
11 TestViewsDelegate::TestViewsDelegate() 11 TestViewsDelegate::TestViewsDelegate()
12 : context_factory_(nullptr), 12 : context_factory_(nullptr),
13 context_factory_private_(nullptr),
13 use_desktop_native_widgets_(false), 14 use_desktop_native_widgets_(false),
14 use_transparent_windows_(false) { 15 use_transparent_windows_(false) {}
15 }
16 16
17 TestViewsDelegate::~TestViewsDelegate() { 17 TestViewsDelegate::~TestViewsDelegate() {
18 } 18 }
19 19
20 void TestViewsDelegate::OnBeforeWidgetInit( 20 void TestViewsDelegate::OnBeforeWidgetInit(
21 Widget::InitParams* params, 21 Widget::InitParams* params,
22 internal::NativeWidgetDelegate* delegate) { 22 internal::NativeWidgetDelegate* delegate) {
23 if (params->opacity == Widget::InitParams::INFER_OPACITY) { 23 if (params->opacity == Widget::InitParams::INFER_OPACITY) {
24 params->opacity = use_transparent_windows_ ? 24 params->opacity = use_transparent_windows_ ?
25 Widget::InitParams::TRANSLUCENT_WINDOW : 25 Widget::InitParams::TRANSLUCENT_WINDOW :
26 Widget::InitParams::OPAQUE_WINDOW; 26 Widget::InitParams::OPAQUE_WINDOW;
27 } 27 }
28 // TODO(tapted): This should return a *Desktop*NativeWidgetMac. 28 // TODO(tapted): This should return a *Desktop*NativeWidgetMac.
29 if (!params->native_widget && use_desktop_native_widgets_) 29 if (!params->native_widget && use_desktop_native_widgets_)
30 params->native_widget = new NativeWidgetMac(delegate); 30 params->native_widget = new NativeWidgetMac(delegate);
31 } 31 }
32 32
33 ui::ContextFactory* TestViewsDelegate::GetContextFactory() { 33 ui::ContextFactory* TestViewsDelegate::GetContextFactory() {
34 return context_factory_; 34 return context_factory_;
35 } 35 }
36 36
37 ui::ContextFactoryPrivate* TestViewsDelegate::GetContextFactoryPrivate() {
38 return context_factory_private_;
39 }
40
37 } // namespace views 41 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/test/test_views_delegate_aura.cc ('k') | ui/views/test/views_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698