mirror of
https://github.com/electron/electron.git
synced 2026-01-23 14:28:17 -05:00
Append the app user model ID as a switch
This commit is contained in:
@@ -50,6 +50,7 @@
|
||||
|
||||
#if defined(OS_WIN)
|
||||
#include "ui/gfx/switches.h"
|
||||
#include <shlobj.h>
|
||||
#endif
|
||||
|
||||
using content::NavigationEntry;
|
||||
@@ -388,6 +389,16 @@ void NativeWindow::AppendExtraCommandLineSwitches(
|
||||
command_line->AppendSwitchASCII(switches::kZoomFactor,
|
||||
base::DoubleToString(zoom_factor_));
|
||||
|
||||
#if defined(OS_WIN)
|
||||
PWSTR explicit_app_id;
|
||||
|
||||
if (SUCCEEDED(GetCurrentProcessExplicitAppUserModelID(&explicit_app_id))) {
|
||||
base::string16 appId = base::string16(explicit_app_id);
|
||||
command_line->AppendSwitchNative(switches::kAppUserModelId, appId);
|
||||
CoTaskMemFree(explicit_app_id);
|
||||
}
|
||||
#endif
|
||||
|
||||
if (web_preferences_.IsEmpty())
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user