| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 140 |
| 141 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 141 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
| 142 NOTREACHED(); | 142 NOTREACHED(); |
| 143 return false; | 143 return false; |
| 144 } | 144 } |
| 145 | 145 |
| 146 bool GoogleChromeDistribution::HasUserExperiments() { | 146 bool GoogleChromeDistribution::HasUserExperiments() { |
| 147 NOTREACHED(); | 147 NOTREACHED(); |
| 148 return false; | 148 return false; |
| 149 } | 149 } |
| 150 |
| 151 int GoogleChromeDistribution::GetAppListIconIndex() { |
| 152 NOTREACHED(); |
| 153 return 0; |
| 154 } |
| OLD | NEW |