Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: chrome/browser/app_icon_win.h

Issue 2098713003: Moved a bunch of win-specific files to the new win folder in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/OWNERS ('k') | chrome/browser/app_icon_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_APP_ICON_WIN_H_
6 #define CHROME_BROWSER_APP_ICON_WIN_H_
7
8 #include <windows.h>
9
10 #include <memory>
11
12 namespace gfx {
13 class ImageFamily;
14 class Size;
15 }
16
17 class SkBitmap;
18
19 HICON GetAppIcon();
20 HICON GetSmallAppIcon();
21
22 gfx::Size GetAppIconSize();
23 gfx::Size GetSmallAppIconSize();
24
25 // Retrieve the application icon for the current process. This returns all of
26 // the different sizes of the icon as an ImageFamily.
27 std::unique_ptr<gfx::ImageFamily> GetAppIconImageFamily();
28
29 #endif // CHROME_BROWSER_APP_ICON_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/OWNERS ('k') | chrome/browser/app_icon_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698