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

Side by Side Diff: chrome/installer/util/chrome_app_host_distribution.h

Issue 11359133: Add default icon to app_host.exe, and use it in shortcuts during installation. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixing comments; renaming. Created 8 years, 1 month 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This file extends the browser distribution with a specific implementation 5 // This file extends the browser distribution with a specific implementation
6 // for Chrome AppHost. 6 // for Chrome AppHost.
7 7
8 #ifndef CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ 8 #ifndef CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_
9 #define CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ 9 #define CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 virtual string16 GetUninstallLinkName() OVERRIDE; 46 virtual string16 GetUninstallLinkName() OVERRIDE;
47 47
48 virtual string16 GetUninstallRegPath() OVERRIDE; 48 virtual string16 GetUninstallRegPath() OVERRIDE;
49 49
50 virtual string16 GetVersionKey() OVERRIDE; 50 virtual string16 GetVersionKey() OVERRIDE;
51 51
52 virtual bool CanSetAsDefault() OVERRIDE; 52 virtual bool CanSetAsDefault() OVERRIDE;
53 53
54 virtual bool CanCreateDesktopShortcuts() OVERRIDE; 54 virtual bool CanCreateDesktopShortcuts() OVERRIDE;
55 55
56 virtual int GetIconIndex() OVERRIDE; 56 virtual string16 GetIconFilename() OVERRIDE;
57 57
58 virtual bool GetCommandExecuteImplClsid( 58 virtual bool GetCommandExecuteImplClsid(
59 string16* handler_class_uuid) OVERRIDE; 59 string16* handler_class_uuid) OVERRIDE;
60 60
61 virtual void UpdateInstallStatus(bool system_install, 61 virtual void UpdateInstallStatus(bool system_install,
62 installer::ArchiveType archive_type, 62 installer::ArchiveType archive_type,
63 installer::InstallStatus install_status) OVERRIDE; 63 installer::InstallStatus install_status) OVERRIDE;
64 64
65 protected: 65 protected:
66 friend class BrowserDistribution; 66 friend class BrowserDistribution;
67 67
68 // Disallow construction from non-friends. 68 // Disallow construction from non-friends.
69 ChromeAppHostDistribution(); 69 ChromeAppHostDistribution();
70 }; 70 };
71 71
72 #endif // CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ 72 #endif // CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698