| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 } | 80 } |
| 81 | 81 |
| 82 base::string16 GoogleChromeDistribution::GetStateMediumKey() { | 82 base::string16 GoogleChromeDistribution::GetStateMediumKey() { |
| 83 return base::string16(); | 83 return base::string16(); |
| 84 } | 84 } |
| 85 | 85 |
| 86 std::string GoogleChromeDistribution::GetNetworkStatsServer() const { | 86 std::string GoogleChromeDistribution::GetNetworkStatsServer() const { |
| 87 return std::string(); | 87 return std::string(); |
| 88 } | 88 } |
| 89 | 89 |
| 90 std::string GoogleChromeDistribution::GetHttpPipeliningTestServer() const { | |
| 91 return std::string(); | |
| 92 } | |
| 93 | |
| 94 base::string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) { | 90 base::string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) { |
| 95 return base::string16(); | 91 return base::string16(); |
| 96 } | 92 } |
| 97 | 93 |
| 98 base::string16 GoogleChromeDistribution::GetUninstallLinkName() { | 94 base::string16 GoogleChromeDistribution::GetUninstallLinkName() { |
| 99 return base::string16(); | 95 return base::string16(); |
| 100 } | 96 } |
| 101 | 97 |
| 102 base::string16 GoogleChromeDistribution::GetUninstallRegPath() { | 98 base::string16 GoogleChromeDistribution::GetUninstallRegPath() { |
| 103 return base::string16(); | 99 return base::string16(); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 125 installer::InstallStatus install_status) { | 121 installer::InstallStatus install_status) { |
| 126 } | 122 } |
| 127 | 123 |
| 128 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 124 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
| 129 return false; | 125 return false; |
| 130 } | 126 } |
| 131 | 127 |
| 132 bool GoogleChromeDistribution::HasUserExperiments() { | 128 bool GoogleChromeDistribution::HasUserExperiments() { |
| 133 return false; | 129 return false; |
| 134 } | 130 } |
| OLD | NEW |