| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 string16 GoogleChromeDistribution::GetAppShortCutName() { | 44 string16 GoogleChromeDistribution::GetAppShortCutName() { |
| 45 NOTREACHED(); | 45 NOTREACHED(); |
| 46 return string16(); | 46 return string16(); |
| 47 } | 47 } |
| 48 | 48 |
| 49 string16 GoogleChromeDistribution::GetAlternateApplicationName() { | 49 string16 GoogleChromeDistribution::GetAlternateApplicationName() { |
| 50 NOTREACHED(); | 50 NOTREACHED(); |
| 51 return string16(); | 51 return string16(); |
| 52 } | 52 } |
| 53 | 53 |
| 54 string16 GoogleChromeDistribution::GetAppListShortcutName() { |
| 55 NOTREACHED(); |
| 56 return string16(); |
| 57 } |
| 58 |
| 59 string16 GoogleChromeDistribution::GetAppShortcutsSubdirName() { |
| 60 NOTREACHED(); |
| 61 return string16(); |
| 62 } |
| 63 |
| 54 string16 GoogleChromeDistribution::GetBaseAppId() { | 64 string16 GoogleChromeDistribution::GetBaseAppId() { |
| 55 NOTREACHED(); | 65 NOTREACHED(); |
| 56 return string16(); | 66 return string16(); |
| 57 } | 67 } |
| 58 | 68 |
| 59 string16 GoogleChromeDistribution::GetInstallSubDir() { | 69 string16 GoogleChromeDistribution::GetInstallSubDir() { |
| 60 NOTREACHED(); | 70 NOTREACHED(); |
| 61 return string16(); | 71 return string16(); |
| 62 } | 72 } |
| 63 | 73 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 150 |
| 141 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 151 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
| 142 NOTREACHED(); | 152 NOTREACHED(); |
| 143 return false; | 153 return false; |
| 144 } | 154 } |
| 145 | 155 |
| 146 bool GoogleChromeDistribution::HasUserExperiments() { | 156 bool GoogleChromeDistribution::HasUserExperiments() { |
| 147 NOTREACHED(); | 157 NOTREACHED(); |
| 148 return false; | 158 return false; |
| 149 } | 159 } |
| OLD | NEW |