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 18 matching lines...) Expand all Loading... |
29 GoogleChromeDistribution::GoogleChromeDistribution( | 29 GoogleChromeDistribution::GoogleChromeDistribution( |
30 std::unique_ptr<AppRegistrationData> app_reg_data) | 30 std::unique_ptr<AppRegistrationData> app_reg_data) |
31 : BrowserDistribution(CHROME_BROWSER, std::move(app_reg_data)) {} | 31 : BrowserDistribution(CHROME_BROWSER, std::move(app_reg_data)) {} |
32 | 32 |
33 void GoogleChromeDistribution::DoPostUninstallOperations( | 33 void GoogleChromeDistribution::DoPostUninstallOperations( |
34 const 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::GetBaseAppName() { | |
40 return base::string16(); | |
41 } | |
42 | |
43 base::string16 GoogleChromeDistribution::GetShortcutName() { | 39 base::string16 GoogleChromeDistribution::GetShortcutName() { |
44 return base::string16(); | 40 return base::string16(); |
45 } | 41 } |
46 | 42 |
47 base::string16 GoogleChromeDistribution::GetPublisherName() { | 43 base::string16 GoogleChromeDistribution::GetPublisherName() { |
48 return base::string16(); | 44 return base::string16(); |
49 } | 45 } |
50 | 46 |
51 base::string16 GoogleChromeDistribution::GetAppDescription() { | 47 base::string16 GoogleChromeDistribution::GetAppDescription() { |
52 return base::string16(); | 48 return base::string16(); |
53 } | 49 } |
54 | 50 |
55 std::string GoogleChromeDistribution::GetSafeBrowsingName() { | 51 std::string GoogleChromeDistribution::GetSafeBrowsingName() { |
56 return std::string(); | 52 return std::string(); |
57 } | 53 } |
58 | 54 |
59 base::string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) { | 55 base::string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) { |
60 return base::string16(); | 56 return base::string16(); |
61 } | 57 } |
62 | 58 |
63 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, | 59 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, |
64 installer::ArchiveType archive_type, | 60 installer::ArchiveType archive_type, |
65 installer::InstallStatus install_status) { | 61 installer::InstallStatus install_status) { |
66 } | 62 } |
OLD | NEW |