Fix up namespaces
This commit is contained in:
parent
08383a69ce
commit
75b08f510e
1 changed files with 9 additions and 6 deletions
|
@ -37,7 +37,10 @@ NotifyIcon::NotifyIcon(NotifyIconHost* host,
|
|||
|
||||
if (SUCCEEDED(GetCurrentProcessExplicitAppUserModelID(&explicit_app_id))) {
|
||||
// GUIDs and MD5 hashes are the same length. So convenient!
|
||||
MD5Sum(explicit_app_id, sizeof(wchar_t) * wcslen(explicit_app_id), (MD5Digest*)&tray_app_id_hash_);
|
||||
base::MD5Sum(explicit_app_id,
|
||||
sizeof(wchar_t) * wcslen(explicit_app_id),
|
||||
(base::MD5Digest*)&tray_app_id_hash_);
|
||||
|
||||
CoTaskMemFree(explicit_app_id);
|
||||
}
|
||||
|
||||
|
@ -176,7 +179,7 @@ void NotifyIcon::InitIconData(NOTIFYICONDATA* icon_data) {
|
|||
icon_data->cbSize = sizeof(NOTIFYICONDATA);
|
||||
icon_data->hWnd = window_;
|
||||
icon_data->uID = icon_id_;
|
||||
memcpy(icon_data->guidItem, tray_app_id_hash_, sizeof(GUID));
|
||||
memcpy((void*)&icon_data->guidItem, &tray_app_id_hash_, sizeof(GUID));
|
||||
}
|
||||
|
||||
} // namespace atom
|
||||
|
|
Loading…
Reference in a new issue