| 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 13 matching lines...) Expand all Loading... |
| 24 const Version& version, | 24 const Version& version, |
| 25 const FilePath& local_data_path, | 25 const FilePath& local_data_path, |
| 26 const string16& distribution_data) { | 26 const string16& distribution_data) { |
| 27 } | 27 } |
| 28 | 28 |
| 29 string16 GoogleChromeDistribution::GetAppGuid() { | 29 string16 GoogleChromeDistribution::GetAppGuid() { |
| 30 NOTREACHED(); | 30 NOTREACHED(); |
| 31 return string16(); | 31 return string16(); |
| 32 } | 32 } |
| 33 | 33 |
| 34 string16 GoogleChromeDistribution::GetApplicationName() { | 34 string16 GoogleChromeDistribution::GetBaseAppName() { |
| 35 NOTREACHED(); | 35 NOTREACHED(); |
| 36 return string16(); | 36 return string16(); |
| 37 } | 37 } |
| 38 | 38 |
| 39 string16 GoogleChromeDistribution::GetAppShortCutName() { | 39 string16 GoogleChromeDistribution::GetAppShortCutName() { |
| 40 NOTREACHED(); | 40 NOTREACHED(); |
| 41 return string16(); | 41 return string16(); |
| 42 } | 42 } |
| 43 | 43 |
| 44 string16 GoogleChromeDistribution::GetAlternateApplicationName() { | 44 string16 GoogleChromeDistribution::GetAlternateApplicationName() { |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 const DictionaryValue& root, string16* uninstall_metrics_string) { | 162 const DictionaryValue& root, string16* uninstall_metrics_string) { |
| 163 NOTREACHED(); | 163 NOTREACHED(); |
| 164 return false; | 164 return false; |
| 165 } | 165 } |
| 166 | 166 |
| 167 bool GoogleChromeDistribution::BuildUninstallMetricsString( | 167 bool GoogleChromeDistribution::BuildUninstallMetricsString( |
| 168 DictionaryValue* uninstall_metrics_dict, string16* metrics) { | 168 DictionaryValue* uninstall_metrics_dict, string16* metrics) { |
| 169 NOTREACHED(); | 169 NOTREACHED(); |
| 170 return false; | 170 return false; |
| 171 } | 171 } |
| OLD | NEW |