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

Side by Side Diff: chrome/installer/util/google_chrome_distribution_dummy.cc

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: Comment fixes to .rc file, and prefixing icon id with IDI_. 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 defines dummy implementation of several functions from the 5 // This file defines dummy implementation of several functions from the
6 // BrowserDistribution class for Google Chrome. These functions allow 64-bit 6 // BrowserDistribution class for Google Chrome. These functions allow 64-bit
7 // Windows Chrome binary to build successfully. Since this binary is only used 7 // Windows Chrome binary to build successfully. Since this binary is only used
8 // for Native Client support, most of the install/uninstall functionality is not 8 // for Native Client support, most of the install/uninstall functionality is not
9 // necessary there. 9 // necessary there.
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 string16 GoogleChromeDistribution::GetUninstallRegPath() { 109 string16 GoogleChromeDistribution::GetUninstallRegPath() {
110 NOTREACHED(); 110 NOTREACHED();
111 return string16(); 111 return string16();
112 } 112 }
113 113
114 string16 GoogleChromeDistribution::GetVersionKey() { 114 string16 GoogleChromeDistribution::GetVersionKey() {
115 NOTREACHED(); 115 NOTREACHED();
116 return string16(); 116 return string16();
117 } 117 }
118 118
119 string16 GoogleChromeDistribution::GetIconFilename() {
120 NOTREACHED();
121 return string16();
122 }
123
119 bool GoogleChromeDistribution::GetCommandExecuteImplClsid( 124 bool GoogleChromeDistribution::GetCommandExecuteImplClsid(
120 string16* handler_class_uuid) { 125 string16* handler_class_uuid) {
121 NOTREACHED(); 126 NOTREACHED();
122 return false; 127 return false;
123 } 128 }
124 129
125
126 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, 130 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install,
127 installer::ArchiveType archive_type, 131 installer::ArchiveType archive_type,
128 installer::InstallStatus install_status) { 132 installer::InstallStatus install_status) {
129 NOTREACHED(); 133 NOTREACHED();
130 } 134 }
131 135
132 bool GoogleChromeDistribution::GetExperimentDetails( 136 bool GoogleChromeDistribution::GetExperimentDetails(
133 UserExperiment* experiment, int flavor) { 137 UserExperiment* experiment, int flavor) {
134 NOTREACHED(); 138 NOTREACHED();
135 return false; 139 return false;
(...skipping 23 matching lines...) Expand all
159 const DictionaryValue& root, string16* uninstall_metrics_string) { 163 const DictionaryValue& root, string16* uninstall_metrics_string) {
160 NOTREACHED(); 164 NOTREACHED();
161 return false; 165 return false;
162 } 166 }
163 167
164 bool GoogleChromeDistribution::BuildUninstallMetricsString( 168 bool GoogleChromeDistribution::BuildUninstallMetricsString(
165 const DictionaryValue* uninstall_metrics_dict, string16* metrics) { 169 const DictionaryValue* uninstall_metrics_dict, string16* metrics) {
166 NOTREACHED(); 170 NOTREACHED();
167 return false; 171 return false;
168 } 172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698