OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 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. | |
4 | |
5 #include "chrome/browser/ui/views/chrome_views_delegate.h" | |
6 | |
7 #include "chrome/browser/ui/ash/ash_util.h" | |
8 | |
9 views::Widget::InitParams::WindowOpacity | |
10 ChromeViewsDelegate::GetOpacityForInitParams( | |
11 const views::Widget::InitParams& params) { | |
12 if (params.type != views::Widget::InitParams::TYPE_WINDOW && | |
sky
2013/12/17 19:14:23
This is the same everywhere, right? Can't we move
Shrikant Kelkar
2013/12/17 22:43:34
Yes we can move back, but then opacity determinati
sky
2013/12/17 22:58:55
Why would it be wrong to centralize the exact same
Shrikant Kelkar
2013/12/17 23:33:29
Done.
| |
13 params.type != views::Widget::InitParams::TYPE_PANEL) | |
14 return views::Widget::InitParams::OPAQUE_WINDOW; | |
15 | |
16 // We want translucent windows when either we are in ASH or we are | |
17 // a top level window which is not of type TYPE_WINDOW. | |
18 if ((params.context && chrome::IsNativeViewInAsh(params.context)) || | |
19 (params.top_level && params.type != | |
sky
2013/12/17 19:14:23
params.top_level isn't quit the same as the old co
Shrikant Kelkar
2013/12/17 22:43:34
sorry, didn't get it?
sky
2013/12/17 22:58:55
The old code considered top_level as:
params.
Shrikant Kelkar
2013/12/17 23:33:29
params.top_level is getting reassigned immediately
| |
20 views::Widget::InitParams::TYPE_WINDOW)) | |
21 return views::Widget::InitParams::TRANSLUCENT_WINDOW; | |
22 | |
23 return views::Widget::InitParams::OPAQUE_WINDOW; | |
24 } | |
OLD | NEW |