| 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 26 matching lines...) Expand all Loading... |
| 37 } | 37 } |
| 38 | 38 |
| 39 base::string16 GoogleChromeDistribution::GetActiveSetupGuid() { | 39 base::string16 GoogleChromeDistribution::GetActiveSetupGuid() { |
| 40 return base::string16(); | 40 return base::string16(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 base::string16 GoogleChromeDistribution::GetBaseAppName() { | 43 base::string16 GoogleChromeDistribution::GetBaseAppName() { |
| 44 return base::string16(); | 44 return base::string16(); |
| 45 } | 45 } |
| 46 | 46 |
| 47 base::string16 GoogleChromeDistribution::GetShortcutName( | 47 base::string16 GoogleChromeDistribution::GetShortcutName() { |
| 48 ShortcutType shortcut_type) { | |
| 49 return base::string16(); | 48 return base::string16(); |
| 50 } | 49 } |
| 51 | 50 |
| 52 int GoogleChromeDistribution::GetIconIndex(ShortcutType shortcut_type) { | 51 int GoogleChromeDistribution::GetIconIndex() { |
| 53 return 0; | 52 return 0; |
| 54 } | 53 } |
| 55 | 54 |
| 56 base::string16 GoogleChromeDistribution::GetBaseAppId() { | 55 base::string16 GoogleChromeDistribution::GetBaseAppId() { |
| 57 return base::string16(); | 56 return base::string16(); |
| 58 } | 57 } |
| 59 | 58 |
| 60 base::string16 GoogleChromeDistribution::GetBrowserProgIdPrefix() { | 59 base::string16 GoogleChromeDistribution::GetBrowserProgIdPrefix() { |
| 61 return base::string16(); | 60 return base::string16(); |
| 62 } | 61 } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 installer::InstallStatus install_status) { | 105 installer::InstallStatus install_status) { |
| 107 } | 106 } |
| 108 | 107 |
| 109 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 108 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
| 110 return false; | 109 return false; |
| 111 } | 110 } |
| 112 | 111 |
| 113 bool GoogleChromeDistribution::HasUserExperiments() { | 112 bool GoogleChromeDistribution::HasUserExperiments() { |
| 114 return false; | 113 return false; |
| 115 } | 114 } |
| OLD | NEW |