| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 std::wstring GoogleChromeDistribution::GetStateMediumKey() { | 73 std::wstring GoogleChromeDistribution::GetStateMediumKey() { |
| 74 NOTREACHED(); | 74 NOTREACHED(); |
| 75 return std::wstring(); | 75 return std::wstring(); |
| 76 } | 76 } |
| 77 | 77 |
| 78 std::wstring GoogleChromeDistribution::GetStatsServerURL() { | 78 std::wstring GoogleChromeDistribution::GetStatsServerURL() { |
| 79 NOTREACHED(); | 79 NOTREACHED(); |
| 80 return std::wstring(); | 80 return std::wstring(); |
| 81 } | 81 } |
| 82 | 82 |
| 83 std::string GoogleChromeDistribution::GetNetworkStatsServer() const { |
| 84 NOTREACHED(); |
| 85 return std::string(); |
| 86 } |
| 87 |
| 83 std::wstring GoogleChromeDistribution::GetDistributionData(HKEY root_key) { | 88 std::wstring GoogleChromeDistribution::GetDistributionData(HKEY root_key) { |
| 84 NOTREACHED(); | 89 NOTREACHED(); |
| 85 return std::wstring(); | 90 return std::wstring(); |
| 86 } | 91 } |
| 87 | 92 |
| 88 std::wstring GoogleChromeDistribution::GetUninstallLinkName() { | 93 std::wstring GoogleChromeDistribution::GetUninstallLinkName() { |
| 89 NOTREACHED(); | 94 NOTREACHED(); |
| 90 return std::wstring(); | 95 return std::wstring(); |
| 91 } | 96 } |
| 92 | 97 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 const DictionaryValue& root, std::wstring* uninstall_metrics_string) { | 141 const DictionaryValue& root, std::wstring* uninstall_metrics_string) { |
| 137 NOTREACHED(); | 142 NOTREACHED(); |
| 138 return false; | 143 return false; |
| 139 } | 144 } |
| 140 | 145 |
| 141 bool GoogleChromeDistribution::BuildUninstallMetricsString( | 146 bool GoogleChromeDistribution::BuildUninstallMetricsString( |
| 142 DictionaryValue* uninstall_metrics_dict, std::wstring* metrics) { | 147 DictionaryValue* uninstall_metrics_dict, std::wstring* metrics) { |
| 143 NOTREACHED(); | 148 NOTREACHED(); |
| 144 return false; | 149 return false; |
| 145 } | 150 } |
| OLD | NEW |