blob: c3e6308e6e5973a815148930414adf20b478fd3c (
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
|
// Copyright (c) 2011 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_APP_ICON_WIN_H_
#define CHROME_BROWSER_APP_ICON_WIN_H_
#include <windows.h>
#include "base/memory/scoped_ptr.h"
namespace gfx {
class ImageFamily;
class Size;
}
class SkBitmap;
HICON GetAppIcon();
HICON GetSmallAppIcon();
gfx::Size GetAppIconSize();
gfx::Size GetSmallAppIconSize();
// Retrieve the application icon for the current process. This returns all of
// the different sizes of the icon as an ImageFamily.
scoped_ptr<gfx::ImageFamily> GetAppIconImageFamily();
#endif // CHROME_BROWSER_APP_ICON_WIN_H_
|