Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: chrome/installer/util/google_chrome_distribution_dummy.cc

Issue 2778223004: Move GetBaseAppName into install_static. (Closed)
Patch Set: sync to position 460686 Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.cc ('k') | chrome/installer/util/google_chrome_sxs_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698