Index: base/win/win_util.h |
diff --git a/base/win/win_util.h b/base/win/win_util.h |
index 09c66cd0f7174a14abbfdc7278d56403ff6fe58f..51dfbd6b58fd0ac2dd72c2585272298321925fbe 100644 |
--- a/base/win/win_util.h |
+++ b/base/win/win_util.h |
@@ -78,9 +78,10 @@ BASE_EXPORT bool SetStringValueForPropertyStore( |
BASE_EXPORT bool SetAppIdForPropertyStore(IPropertyStore* property_store, |
const wchar_t* app_id); |
-// Sets the DualModeApp property to true in |property_store|. The function is |
-// intended for tagging dual mode applications in Win8. |
-BASE_EXPORT bool SetDualModeForPropertyStore(IPropertyStore* property_store); |
+// Sets the DualModeApp property to |is_dual_mode| in |property_store|. This |
+// method is intended for tagging dual mode applications in Win8+. |
+BASE_EXPORT bool SetDualModeForPropertyStore(IPropertyStore* property_store, |
+ bool is_dual_mode); |
// Adds the specified |command| using the specified |name| to the AutoRun key. |
// |root_key| could be HKCU or HKLM or the root of any user hive. |