blob: 7465076be49502964c964c09c09e1c8615aacae3 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// 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/gfx/native_widget_types.h"
namespace chrome {
// Returns true if Ash should be run at startup.
bool ShouldOpenAshOnStartup();
// Returns true if |native_view/native_window| exists within the Ash
// environment.
bool IsNativeViewInAsh(gfx::NativeView native_view);
bool IsNativeWindowInAsh(gfx::NativeWindow native_window);
} // namespace chrome
#endif // CHROME_BROWSER_UI_ASH_ASH_UTIL_H_