blob: 6fb3d5efc138dd254e34b04fc330d6002c15cb7e (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright 2013 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 ASH_SHELF_SHELF_UTIL_H_
#define ASH_SHELF_SHELF_UTIL_H_
#include "ash/ash_export.h"
#include "ash/launcher/launcher_types.h"
#include "ui/aura/window.h"
namespace aura {
class Window;
}
namespace ash {
extern const aura::WindowProperty<ash::LauncherItemDetails*>* const
kLauncherItemDetailsKey;
// Associates LauncherItem of |id| with specified |window|.
ASH_EXPORT void SetLauncherIDForWindow(LauncherID id, aura::Window* window);
// Returns the id of the LauncherItem associated with the specified |window|,
// or 0 if there isn't one.
// Note: Window of a tabbed browser will return the |LauncherID| of the
// currently active tab.
ASH_EXPORT LauncherID GetLauncherIDForWindow(aura::Window* window);
// Sets LauncherItemDetails for |window|.
ASH_EXPORT void SetLauncherItemDetailsForWindow(
aura::Window* window,
const LauncherItemDetails& details);
// Clears LauncherItemDetails for |window|.
// If |window| has a LauncherItem by SetLauncherItemDetailsForWindow(), it will
// be removed.
ASH_EXPORT void ClearLauncherItemDetailsForWindow(aura::Window* window);
// Returns LauncherItemDetails for |window| or NULL if it doesn't have.
// Returned LauncherItemDetails object is owned by the |window|.
ASH_EXPORT const LauncherItemDetails* GetLauncherItemDetailsForWindow(
aura::Window* window);
} // namespace ash
#endif // ASH_SHELF_SHELF_UTIL_H_
|