End session event on browser window

This commit is contained in:
Hari Krishna Reddy Juturu 2017-04-21 20:45:30 +00:00
parent e9880e9c97
commit 3c3e14b820
8 changed files with 38 additions and 0 deletions

View file

@ -147,6 +147,11 @@ bool NativeWindowViews::PreHandleMSG(
}
return false;
}
case WM_ENDSESSION: {
if (w_param) {
NotifyWindowEndSession();
}
}
default:
return false;
}