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

Side by Side Diff: chrome/installer/util/google_chrome_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: Small comment change. 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 generic BrowserDistribution class to declare Google Chrome 5 // This file extends generic BrowserDistribution class to declare Google Chrome
6 // specific implementation. 6 // specific implementation.
7 7
8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ 8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_
9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ 9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_
10 10
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 // potential use in the uninstall survey. It must be called before the 67 // potential use in the uninstall survey. It must be called before the
68 // key returned by GetVersionKey() is deleted. 68 // key returned by GetVersionKey() is deleted.
69 virtual string16 GetDistributionData(HKEY root_key) OVERRIDE; 69 virtual string16 GetDistributionData(HKEY root_key) OVERRIDE;
70 70
71 virtual string16 GetUninstallLinkName() OVERRIDE; 71 virtual string16 GetUninstallLinkName() OVERRIDE;
72 72
73 virtual string16 GetUninstallRegPath() OVERRIDE; 73 virtual string16 GetUninstallRegPath() OVERRIDE;
74 74
75 virtual string16 GetVersionKey() OVERRIDE; 75 virtual string16 GetVersionKey() OVERRIDE;
76 76
77 virtual string16 GetIconFilename() OVERRIDE;
78
77 virtual bool GetCommandExecuteImplClsid( 79 virtual bool GetCommandExecuteImplClsid(
78 string16* handler_class_uuid) OVERRIDE; 80 string16* handler_class_uuid) OVERRIDE;
79 81
80 virtual void UpdateInstallStatus( 82 virtual void UpdateInstallStatus(
81 bool system_install, 83 bool system_install,
82 installer::ArchiveType archive_type, 84 installer::ArchiveType archive_type,
83 installer::InstallStatus install_status) OVERRIDE; 85 installer::InstallStatus install_status) OVERRIDE;
84 86
85 virtual bool GetExperimentDetails(UserExperiment* experiment, 87 virtual bool GetExperimentDetails(UserExperiment* experiment,
86 int flavor) OVERRIDE; 88 int flavor) OVERRIDE;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 // Returns true if at least one uninstall metric was found in 133 // Returns true if at least one uninstall metric was found in
132 // uninstall_metrics_dict, false otherwise. 134 // uninstall_metrics_dict, false otherwise.
133 virtual bool BuildUninstallMetricsString( 135 virtual bool BuildUninstallMetricsString(
134 const base::DictionaryValue* uninstall_metrics_dict, string16* metrics); 136 const base::DictionaryValue* uninstall_metrics_dict, string16* metrics);
135 137
136 // The product ID for Google Update. 138 // The product ID for Google Update.
137 string16 product_guid_; 139 string16 product_guid_;
138 }; 140 };
139 141
140 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ 142 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698