| Index: ash/frame/frame_util.h
|
| diff --git a/ash/frame/frame_util.h b/ash/frame/frame_util.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ef8e0c43dc570e5da3496eb21081e8b753ef463e
|
| --- /dev/null
|
| +++ b/ash/frame/frame_util.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2014 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_FRAME_FRAME_UTIL_H_
|
| +#define ASH_FRAME_FRAME_UTIL_H_
|
| +
|
| +#include "ash/ash_export.h"
|
| +
|
| +namespace content {
|
| +class BrowserContext;
|
| +}
|
| +
|
| +namespace gfx {
|
| +class Image;
|
| +}
|
| +
|
| +namespace ash {
|
| +
|
| +// Returns the avatar image to be used in the title bar
|
| +// for the user associated witht the |context|.
|
| +ASH_EXPORT gfx::Image GetAvatarImageForContext(
|
| + content::BrowserContext* context);
|
| +
|
| +} // namespace ash
|
| +
|
| +#endif // ASH_FRAME_FRAME_UTIL_H_
|
| +
|
|
|