blob: fbb9ed1433d400f6c3e01448404ef826724d201d [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_ASH_ASH_UTIL_H_
#define CHROME_BROWSER_UI_ASH_ASH_UTIL_H_
#include "ui/views/widget/widget.h"
namespace aura {
class Window;
}
namespace ash_util {
// Sets up `params` to place the widget in an ash shell window container on
// the display used for new windows. See ash/public/cpp/shell_window_ids.h for
// `container_id` values.
// TODO(jamescook): Extend to take a display_id.
void SetupWidgetInitParamsForContainer(views::Widget::InitParams* params,
int container_id);
// Sets up `params` to place the widget in an ash shell window container on
// the primary display. See ash/public/cpp/shell_window_ids.h for
// `container_id` values.
void SetupWidgetInitParamsForContainerInPrimary(
views::Widget::InitParams* params,
int container_id);
// Returns the the SystemModalContainer id if a session is active, ortherwise
// returns the LockSystemModalContainer id so that the dialog appears above the
// lock screen.
int GetSystemModalDialogContainerId();
// Triggers the window bounce animation.
void BounceWindow(aura::Window* window);
} // namespace ash_util
#endif // CHROME_BROWSER_UI_ASH_ASH_UTIL_H_