Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / ui / views / chrome_views_delegate_aura.cc
blobf2691c5e1f01dbfdf9ef2a6e4aa4c85e1063e764
1 // Copyright 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.
5 #include "chrome/browser/ui/views/chrome_views_delegate.h"
7 #include "chrome/browser/ui/ash/ash_util.h"
9 views::Widget::InitParams::WindowOpacity
10 ChromeViewsDelegate::GetOpacityForInitParams(
11 const views::Widget::InitParams& params) {
12 gfx::NativeView native_view = params.parent ? params.parent : params.context;
13 if (native_view && chrome::IsNativeViewInAsh(native_view))
14 return views::Widget::InitParams::TRANSLUCENT_WINDOW;
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.child && params.type != views::Widget::InitParams::TYPE_WINDOW)
19 return views::Widget::InitParams::TRANSLUCENT_WINDOW;
21 return views::Widget::InitParams::OPAQUE_WINDOW;