feat: read/write Toast Activator CLSID in shortcuts (#25493)

* read/write Toast Activator CLSID

* docs

* tests

* tweaks
This commit is contained in:
bitdisaster 2020-09-17 15:17:44 -07:00 committed by GitHub
parent 77038b7bda
commit 2cfa41e6e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 31 additions and 2 deletions

View file

@ -7,6 +7,9 @@
#if defined(OS_WIN)
#include <rpc.h>
#include "base/strings/sys_string_conversions.h"
#include "base/win/win_util.h"
#endif
#include <string>
@ -14,6 +17,7 @@
#if defined(OS_WIN)
typedef GUID UUID;
const GUID GUID_NULL = {};
#else
typedef struct {
} UUID;
@ -34,6 +38,9 @@ struct Converter<UUID> {
UUID uid;
if (guid.length() > 0) {
if (guid[0] == '{' && guid[guid.length() - 1] == '}') {
guid = guid.substr(1, guid.length() - 2);
}
unsigned char* uid_cstr = (unsigned char*)guid.c_str();
RPC_STATUS result = UuidFromStringA(uid_cstr, &uid);
if (result == RPC_S_INVALID_STRING_UUID) {
@ -46,6 +53,18 @@ struct Converter<UUID> {
return false;
#else
return false;
#endif
}
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, UUID val) {
#if defined(OS_WIN)
if (val == GUID_NULL) {
return StringToV8(isolate, "");
} else {
std::wstring uid = base::win::WStringFromGUID(val);
return StringToV8(isolate, base::SysWideToUTF8(uid));
}
#else
return v8::Undefined(isolate);
#endif
}
};