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

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: Created 5 years, 4 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() {
grt (UTC plus 2) 2015/09/01 20:02:27 this needs to be updated in google_chrome_distribu
gab 2015/09/02 14:23:00 Done.
+ return kCommandExecuteImplUuid;
}
// This method checks if we need to change "ap" key in Google Update to try

Powered by Google App Engine
This is Rietveld 408576698