| 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::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 Loading... |
| 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 } |
| OLD | NEW |