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

Side by Side Diff: chrome/installer/util/chrome_frame_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 Frame. 6 // for Chrome Frame.
7 7
8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ 8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ 9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
10 10
(...skipping 29 matching lines...) Expand all
40 virtual std::string GetNetworkStatsServer() const OVERRIDE; 40 virtual std::string GetNetworkStatsServer() const OVERRIDE;
41 41
42 virtual std::string GetHttpPipeliningTestServer() const OVERRIDE; 42 virtual std::string GetHttpPipeliningTestServer() const OVERRIDE;
43 43
44 virtual string16 GetUninstallLinkName() OVERRIDE; 44 virtual string16 GetUninstallLinkName() OVERRIDE;
45 45
46 virtual string16 GetUninstallRegPath() OVERRIDE; 46 virtual string16 GetUninstallRegPath() OVERRIDE;
47 47
48 virtual string16 GetVersionKey() OVERRIDE; 48 virtual string16 GetVersionKey() OVERRIDE;
49 49
50 virtual string16 GetIconFilename() OVERRIDE;
51
52 virtual int GetIconIndex() OVERRIDE;
53
50 virtual bool CanSetAsDefault() OVERRIDE; 54 virtual bool CanSetAsDefault() OVERRIDE;
51 55
52 virtual bool CanCreateDesktopShortcuts() OVERRIDE; 56 virtual bool CanCreateDesktopShortcuts() OVERRIDE;
53 57
54 virtual bool GetCommandExecuteImplClsid( 58 virtual bool GetCommandExecuteImplClsid(
55 string16* handler_class_uuid) OVERRIDE; 59 string16* handler_class_uuid) OVERRIDE;
56 60
57 virtual void UpdateInstallStatus(bool system_install, 61 virtual void UpdateInstallStatus(bool system_install,
58 installer::ArchiveType archive_type, 62 installer::ArchiveType archive_type,
59 installer::InstallStatus install_status) OVERRIDE; 63 installer::InstallStatus install_status) OVERRIDE;
60 64
61 protected: 65 protected:
62 friend class BrowserDistribution; 66 friend class BrowserDistribution;
63 67
64 // Disallow construction from non-friends. 68 // Disallow construction from non-friends.
65 ChromeFrameDistribution(); 69 ChromeFrameDistribution();
66 }; 70 };
67 71
68 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ 72 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698