| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 } | 45 } |
| 46 | 46 |
| 47 base::string16 GoogleChromeDistribution::GetShortcutName() { | 47 base::string16 GoogleChromeDistribution::GetShortcutName() { |
| 48 return base::string16(); | 48 return base::string16(); |
| 49 } | 49 } |
| 50 | 50 |
| 51 int GoogleChromeDistribution::GetIconIndex() { | 51 int GoogleChromeDistribution::GetIconIndex() { |
| 52 return 0; | 52 return 0; |
| 53 } | 53 } |
| 54 | 54 |
| 55 base::string16 GoogleChromeDistribution::GetBrowserProgIdPrefix() { | |
| 56 return base::string16(); | |
| 57 } | |
| 58 | |
| 59 base::string16 GoogleChromeDistribution::GetBrowserProgIdDesc() { | |
| 60 return base::string16(); | |
| 61 } | |
| 62 | |
| 63 base::string16 GoogleChromeDistribution::GetPublisherName() { | 55 base::string16 GoogleChromeDistribution::GetPublisherName() { |
| 64 return base::string16(); | 56 return base::string16(); |
| 65 } | 57 } |
| 66 | 58 |
| 67 base::string16 GoogleChromeDistribution::GetAppDescription() { | 59 base::string16 GoogleChromeDistribution::GetAppDescription() { |
| 68 return base::string16(); | 60 return base::string16(); |
| 69 } | 61 } |
| 70 | 62 |
| 71 std::string GoogleChromeDistribution::GetSafeBrowsingName() { | 63 std::string GoogleChromeDistribution::GetSafeBrowsingName() { |
| 72 return std::string(); | 64 return std::string(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 93 installer::InstallStatus install_status) { | 85 installer::InstallStatus install_status) { |
| 94 } | 86 } |
| 95 | 87 |
| 96 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 88 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
| 97 return false; | 89 return false; |
| 98 } | 90 } |
| 99 | 91 |
| 100 bool GoogleChromeDistribution::HasUserExperiments() { | 92 bool GoogleChromeDistribution::HasUserExperiments() { |
| 101 return false; | 93 return false; |
| 102 } | 94 } |
| OLD | NEW |