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

Unified Diff: chrome/installer/util/chrome_frame_distribution.cc

Issue 23258005: Give SxS distribution its own registration GUIDs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove magic key combo from browser_options_handler.cc Created 7 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/chrome_frame_distribution.cc
diff --git a/chrome/installer/util/chrome_frame_distribution.cc b/chrome/installer/util/chrome_frame_distribution.cc
index f968178886a1db002cd95f9be4d4371f5013a276..ae273ef10399e722a9151f9be8e27f73ac6fe06b 100644
--- a/chrome/installer/util/chrome_frame_distribution.cc
+++ b/chrome/installer/util/chrome_frame_distribution.cc
@@ -121,6 +121,10 @@ int ChromeFrameDistribution::GetIconIndex(ShortcutType shortcut_type) {
}
}
+bool ChromeFrameDistribution::IsSetAsDefaultSupported() {
+ return false;
+}
+
bool ChromeFrameDistribution::CanSetAsDefault() {
return false;
}
@@ -129,11 +133,16 @@ bool ChromeFrameDistribution::CanCreateDesktopShortcuts() {
return false;
}
-bool ChromeFrameDistribution::GetCommandExecuteImplClsid(
+bool ChromeFrameDistribution::GetCommandExecuteImplClsidString(
string16* handler_class_uuid) {
return false;
gab 2013/09/06 18:40:08 I find it sad to have to duplicate this logic from
zturner 2013/09/06 20:53:16 StringFromCLSID() and UuidToString() both internal
}
+bool ChromeFrameDistribution::GetCommandExecuteImplClsid(
+ CLSID* handler_class_uuid) {
+ return false;
+}
+
void ChromeFrameDistribution::UpdateInstallStatus(bool system_install,
installer::ArchiveType archive_type,
installer::InstallStatus install_status) {

Powered by Google App Engine
This is Rietveld 408576698