| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 99 |
| 100 base::string16 GoogleChromeDistribution::GetIconFilename() { | 100 base::string16 GoogleChromeDistribution::GetIconFilename() { |
| 101 return base::string16(); | 101 return base::string16(); |
| 102 } | 102 } |
| 103 | 103 |
| 104 bool GoogleChromeDistribution::GetCommandExecuteImplClsid( | 104 bool GoogleChromeDistribution::GetCommandExecuteImplClsid( |
| 105 base::string16* handler_class_uuid) { | 105 base::string16* handler_class_uuid) { |
| 106 return false; | 106 return false; |
| 107 } | 107 } |
| 108 | 108 |
| 109 bool GoogleChromeDistribution::AppHostIsSupported() { | |
| 110 return false; | |
| 111 } | |
| 112 | |
| 113 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, | 109 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, |
| 114 installer::ArchiveType archive_type, | 110 installer::ArchiveType archive_type, |
| 115 installer::InstallStatus install_status) { | 111 installer::InstallStatus install_status) { |
| 116 } | 112 } |
| 117 | 113 |
| 118 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 114 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
| 119 return false; | 115 return false; |
| 120 } | 116 } |
| 121 | 117 |
| 122 bool GoogleChromeDistribution::HasUserExperiments() { | 118 bool GoogleChromeDistribution::HasUserExperiments() { |
| 123 return false; | 119 return false; |
| 124 } | 120 } |
| OLD | NEW |