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

Unified Diff: chrome/installer/util/google_chrome_distribution.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 side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/google_chrome_distribution.cc
diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc
index 3ded7e541da0ccc51320bd577e7cdd35f9d0b299..7c0992ca654d24eb0d790635b3fddc619d49dd21 100644
--- a/chrome/installer/util/google_chrome_distribution.cc
+++ b/chrome/installer/util/google_chrome_distribution.cc
@@ -236,11 +236,8 @@ base::string16 GoogleChromeDistribution::GetIconFilename() {
return installer::kChromeExe;
}
-bool GoogleChromeDistribution::GetCommandExecuteImplClsid(
- base::string16* handler_class_uuid) {
- if (handler_class_uuid)
- *handler_class_uuid = kCommandExecuteImplUuid;
- return true;
+base::string16 GoogleChromeDistribution::GetCommandExecuteImplClsid() {
+ return kCommandExecuteImplUuid;
}
// This method checks if we need to change "ap" key in Google Update to try
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.h ('k') | chrome/installer/util/google_chrome_distribution_dummy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698