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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 std::wstring GoogleChromeDistribution::GetUninstallRegPath() { | 104 std::wstring GoogleChromeDistribution::GetUninstallRegPath() { |
105 NOTREACHED(); | 105 NOTREACHED(); |
106 return std::wstring(); | 106 return std::wstring(); |
107 } | 107 } |
108 | 108 |
109 std::wstring GoogleChromeDistribution::GetVersionKey() { | 109 std::wstring GoogleChromeDistribution::GetVersionKey() { |
110 NOTREACHED(); | 110 NOTREACHED(); |
111 return std::wstring(); | 111 return std::wstring(); |
112 } | 112 } |
113 | 113 |
| 114 bool GoogleChromeDistribution::GetDelegateExecuteHandlerData( |
| 115 string16* handler_class_uuid, |
| 116 string16* type_lib_uuid, |
| 117 string16* type_lib_version, |
| 118 string16* interface_uuid) { |
| 119 NOTREACHED(); |
| 120 return false; |
| 121 } |
| 122 |
| 123 |
114 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, | 124 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, |
115 installer::ArchiveType archive_type, | 125 installer::ArchiveType archive_type, |
116 installer::InstallStatus install_status) { | 126 installer::InstallStatus install_status) { |
117 NOTREACHED(); | 127 NOTREACHED(); |
118 } | 128 } |
119 | 129 |
120 bool GoogleChromeDistribution::GetExperimentDetails( | 130 bool GoogleChromeDistribution::GetExperimentDetails( |
121 UserExperiment* experiment, int flavor) { | 131 UserExperiment* experiment, int flavor) { |
122 NOTREACHED(); | 132 NOTREACHED(); |
123 return false; | 133 return false; |
(...skipping 23 matching lines...) Expand all Loading... |
147 const DictionaryValue& root, std::wstring* uninstall_metrics_string) { | 157 const DictionaryValue& root, std::wstring* uninstall_metrics_string) { |
148 NOTREACHED(); | 158 NOTREACHED(); |
149 return false; | 159 return false; |
150 } | 160 } |
151 | 161 |
152 bool GoogleChromeDistribution::BuildUninstallMetricsString( | 162 bool GoogleChromeDistribution::BuildUninstallMetricsString( |
153 DictionaryValue* uninstall_metrics_dict, std::wstring* metrics) { | 163 DictionaryValue* uninstall_metrics_dict, std::wstring* metrics) { |
154 NOTREACHED(); | 164 NOTREACHED(); |
155 return false; | 165 return false; |
156 } | 166 } |
OLD | NEW |