blob: ee955d82b62796722392912832c0999ace4a5606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// Copyright (c) 2015 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_SESSION_UTIL_H_
#define CHROME_BROWSER_UI_ASH_SESSION_UTIL_H_
#include "base/callback.h"
#include "ui/gfx/image/image_skia.h"
namespace aura {
class Window;
}
namespace content {
class BrowserContext;
}
content::BrowserContext* GetActiveBrowserContext();
using GetActiveBrowserContextCallback =
base::Callback<content::BrowserContext*(void)>;
// See documentation in ash/shell_delegate.h for the method of the same name.
// |context| is the content::BrowserContext deemed active for the current
// scenario. This is passed in because it can differ in tests vs. production.
// See for example MultiUserWindowManagerTestChromeOS.
bool CanShowWindowForUser(
aura::Window* window,
const GetActiveBrowserContextCallback& get_context_callback);
gfx::ImageSkia GetAvatarImageForContext(content::BrowserContext* context);
#endif // CHROME_BROWSER_UI_ASH_SESSION_UTIL_H_
|