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 scoped_ptr<AppRegistrationData>( | 24 scoped_ptr<AppRegistrationData>( |
25 new NonUpdatingAppRegistrationData(base::string16()))) { | 25 new NonUpdatingAppRegistrationData(base::string16()))) { |
26 } | 26 } |
27 | 27 |
28 GoogleChromeDistribution::GoogleChromeDistribution( | 28 GoogleChromeDistribution::GoogleChromeDistribution( |
29 scoped_ptr<AppRegistrationData> app_reg_data) | 29 scoped_ptr<AppRegistrationData> app_reg_data) |
30 : BrowserDistribution(CHROME_BROWSER, app_reg_data.Pass()) { | 30 : BrowserDistribution(CHROME_BROWSER, app_reg_data.Pass()) { |
31 } | 31 } |
32 | 32 |
33 void GoogleChromeDistribution::DoPostUninstallOperations( | 33 void GoogleChromeDistribution::DoPostUninstallOperations( |
34 const base::Version& version, | 34 const Version& version, |
35 const base::FilePath& local_data_path, | 35 const base::FilePath& local_data_path, |
36 const base::string16& distribution_data) { | 36 const base::string16& distribution_data) { |
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(); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 installer::InstallStatus install_status) { | 107 installer::InstallStatus install_status) { |
108 } | 108 } |
109 | 109 |
110 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 110 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
111 return false; | 111 return false; |
112 } | 112 } |
113 | 113 |
114 bool GoogleChromeDistribution::HasUserExperiments() { | 114 bool GoogleChromeDistribution::HasUserExperiments() { |
115 return false; | 115 return false; |
116 } | 116 } |
OLD | NEW |