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

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

Issue 1321143002: Make GetCommandExecuteImplClsid return the CLSID as a string directly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_no_delegate_execute_win10
Patch Set: review:grt Created 5 years, 3 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 } 86 }
87 87
88 base::string16 GoogleChromeDistribution::GetUninstallRegPath() { 88 base::string16 GoogleChromeDistribution::GetUninstallRegPath() {
89 return base::string16(); 89 return base::string16();
90 } 90 }
91 91
92 base::string16 GoogleChromeDistribution::GetIconFilename() { 92 base::string16 GoogleChromeDistribution::GetIconFilename() {
93 return base::string16(); 93 return base::string16();
94 } 94 }
95 95
96 bool GoogleChromeDistribution::GetCommandExecuteImplClsid( 96 base::string16 GoogleChromeDistribution::GetCommandExecuteImplClsid() {
97 base::string16* handler_class_uuid) { 97 return base::string16();
98 return false;
99 } 98 }
100 99
101 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, 100 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install,
102 installer::ArchiveType archive_type, 101 installer::ArchiveType archive_type,
103 installer::InstallStatus install_status) { 102 installer::InstallStatus install_status) {
104 } 103 }
105 104
106 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { 105 bool GoogleChromeDistribution::ShouldSetExperimentLabels() {
107 return false; 106 return false;
108 } 107 }
109 108
110 bool GoogleChromeDistribution::HasUserExperiments() { 109 bool GoogleChromeDistribution::HasUserExperiments() {
111 return false; 110 return false;
112 } 111 }
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