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) { |