| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 int GoogleChromeDistribution::GetIconIndex(ShortcutType shortcut_type) { | 49 int GoogleChromeDistribution::GetIconIndex(ShortcutType shortcut_type) { |
| 50 NOTREACHED(); | 50 NOTREACHED(); |
| 51 return 0; | 51 return 0; |
| 52 } | 52 } |
| 53 | 53 |
| 54 string16 GoogleChromeDistribution::GetBaseAppId() { | 54 string16 GoogleChromeDistribution::GetBaseAppId() { |
| 55 NOTREACHED(); | 55 NOTREACHED(); |
| 56 return string16(); | 56 return string16(); |
| 57 } | 57 } |
| 58 | 58 |
| 59 string16 GoogleChromeDistribution::GetBrowserProgIdPrefix() { |
| 60 NOTREACHED(); |
| 61 return string16(); |
| 62 } |
| 63 |
| 64 string16 GoogleChromeDistribution::GetBrowserProgIdDesc() { |
| 65 NOTREACHED(); |
| 66 return string16(); |
| 67 } |
| 68 |
| 59 string16 GoogleChromeDistribution::GetInstallSubDir() { | 69 string16 GoogleChromeDistribution::GetInstallSubDir() { |
| 60 NOTREACHED(); | 70 NOTREACHED(); |
| 61 return string16(); | 71 return string16(); |
| 62 } | 72 } |
| 63 | 73 |
| 64 string16 GoogleChromeDistribution::GetPublisherName() { | 74 string16 GoogleChromeDistribution::GetPublisherName() { |
| 65 NOTREACHED(); | 75 NOTREACHED(); |
| 66 return string16(); | 76 return string16(); |
| 67 } | 77 } |
| 68 | 78 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 string16 GoogleChromeDistribution::GetVersionKey() { | 124 string16 GoogleChromeDistribution::GetVersionKey() { |
| 115 NOTREACHED(); | 125 NOTREACHED(); |
| 116 return string16(); | 126 return string16(); |
| 117 } | 127 } |
| 118 | 128 |
| 119 string16 GoogleChromeDistribution::GetIconFilename() { | 129 string16 GoogleChromeDistribution::GetIconFilename() { |
| 120 NOTREACHED(); | 130 NOTREACHED(); |
| 121 return string16(); | 131 return string16(); |
| 122 } | 132 } |
| 123 | 133 |
| 134 bool GoogleChromeDistribution::GetCommandExecuteImplClsidString( |
| 135 string16* handler_class_uuid) { |
| 136 NOTREACHED(); |
| 137 return false; |
| 138 } |
| 139 |
| 124 bool GoogleChromeDistribution::GetCommandExecuteImplClsid( | 140 bool GoogleChromeDistribution::GetCommandExecuteImplClsid( |
| 125 string16* handler_class_uuid) { | 141 CLSID* handler_class_uuid) { |
| 126 NOTREACHED(); | 142 NOTREACHED(); |
| 127 return false; | 143 return false; |
| 128 } | 144 } |
| 129 | 145 |
| 130 bool GoogleChromeDistribution::AppHostIsSupported() { | 146 bool GoogleChromeDistribution::AppHostIsSupported() { |
| 131 NOTREACHED(); | 147 NOTREACHED(); |
| 132 return false; | 148 return false; |
| 133 } | 149 } |
| 134 | 150 |
| 135 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, | 151 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, |
| 136 installer::ArchiveType archive_type, | 152 installer::ArchiveType archive_type, |
| 137 installer::InstallStatus install_status) { | 153 installer::InstallStatus install_status) { |
| 138 NOTREACHED(); | 154 NOTREACHED(); |
| 139 } | 155 } |
| 140 | 156 |
| 141 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 157 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
| 142 NOTREACHED(); | 158 NOTREACHED(); |
| 143 return false; | 159 return false; |
| 144 } | 160 } |
| 145 | 161 |
| 146 bool GoogleChromeDistribution::HasUserExperiments() { | 162 bool GoogleChromeDistribution::HasUserExperiments() { |
| 147 NOTREACHED(); | 163 NOTREACHED(); |
| 148 return false; | 164 return false; |
| 149 } | 165 } |
| OLD | NEW |