Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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::GetIconFile() { | |
| 120 NOTREACHED(); | |
| 121 return string16(); | |
| 122 } | |
|
gab
2012/11/14 18:47:32
Why isn't GetIconIndex() also found here?
huangs
2012/11/14 20:35:55
Because in the test flow we have
google_chrome_di
| |
| 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 | 130 |
| 126 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, | 131 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, |
| 127 installer::ArchiveType archive_type, | 132 installer::ArchiveType archive_type, |
| 128 installer::InstallStatus install_status) { | 133 installer::InstallStatus install_status) { |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 159 const DictionaryValue& root, string16* uninstall_metrics_string) { | 164 const DictionaryValue& root, string16* uninstall_metrics_string) { |
| 160 NOTREACHED(); | 165 NOTREACHED(); |
| 161 return false; | 166 return false; |
| 162 } | 167 } |
| 163 | 168 |
| 164 bool GoogleChromeDistribution::BuildUninstallMetricsString( | 169 bool GoogleChromeDistribution::BuildUninstallMetricsString( |
| 165 const DictionaryValue* uninstall_metrics_dict, string16* metrics) { | 170 const DictionaryValue* uninstall_metrics_dict, string16* metrics) { |
| 166 NOTREACHED(); | 171 NOTREACHED(); |
| 167 return false; | 172 return false; |
| 168 } | 173 } |
| OLD | NEW |