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

Side by Side Diff: chrome/browser/win/app_icon.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/win/OWNERS ('k') | chrome/browser/win/app_icon.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_APP_ICON_WIN_H_ 5 #ifndef CHROME_BROWSER_WIN_APP_ICON_H_
6 #define CHROME_BROWSER_APP_ICON_WIN_H_ 6 #define CHROME_BROWSER_WIN_APP_ICON_H_
7 7
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include <memory> 10 #include <memory>
11 11
12 namespace gfx { 12 namespace gfx {
13 class ImageFamily; 13 class ImageFamily;
14 class Size; 14 class Size;
15 } 15 }
16 16
17 class SkBitmap; 17 class SkBitmap;
18 18
19 HICON GetAppIcon(); 19 HICON GetAppIcon();
20 HICON GetSmallAppIcon(); 20 HICON GetSmallAppIcon();
21 21
22 gfx::Size GetAppIconSize(); 22 gfx::Size GetAppIconSize();
23 gfx::Size GetSmallAppIconSize(); 23 gfx::Size GetSmallAppIconSize();
24 24
25 // Retrieve the application icon for the current process. This returns all of 25 // Retrieve the application icon for the current process. This returns all of
26 // the different sizes of the icon as an ImageFamily. 26 // the different sizes of the icon as an ImageFamily.
27 std::unique_ptr<gfx::ImageFamily> GetAppIconImageFamily(); 27 std::unique_ptr<gfx::ImageFamily> GetAppIconImageFamily();
28 28
29 #endif // CHROME_BROWSER_APP_ICON_WIN_H_ 29 #endif // CHROME_BROWSER_WIN_APP_ICON_H_
OLDNEW
« no previous file with comments | « chrome/browser/win/OWNERS ('k') | chrome/browser/win/app_icon.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698