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

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

Issue 811283002: [Installer] Cleaning up dead code for App Launcher / App Host installs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment fix. Created 5 years, 10 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 base::string16 GoogleChromeDistribution::GetIconFilename() { 100 base::string16 GoogleChromeDistribution::GetIconFilename() {
101 return base::string16(); 101 return base::string16();
102 } 102 }
103 103
104 bool GoogleChromeDistribution::GetCommandExecuteImplClsid( 104 bool GoogleChromeDistribution::GetCommandExecuteImplClsid(
105 base::string16* handler_class_uuid) { 105 base::string16* handler_class_uuid) {
106 return false; 106 return false;
107 } 107 }
108 108
109 bool GoogleChromeDistribution::AppHostIsSupported() {
110 return false;
111 }
112
113 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, 109 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install,
114 installer::ArchiveType archive_type, 110 installer::ArchiveType archive_type,
115 installer::InstallStatus install_status) { 111 installer::InstallStatus install_status) {
116 } 112 }
117 113
118 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { 114 bool GoogleChromeDistribution::ShouldSetExperimentLabels() {
119 return false; 115 return false;
120 } 116 }
121 117
122 bool GoogleChromeDistribution::HasUserExperiments() { 118 bool GoogleChromeDistribution::HasUserExperiments() {
123 return false; 119 return false;
124 } 120 }
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