Use application name when app user model ID is not available

This commit is contained in:
Cheng Zhao 2015-11-24 15:11:43 +08:00
parent c060539562
commit 087eeedab8
4 changed files with 24 additions and 13 deletions

View file

@ -22,7 +22,9 @@ class ScopedHString {
~ScopedHString();
// Sets to |source|.
void Set(const wchar_t* source);
void Reset();
void Reset(const wchar_t* source);
void Reset(const std::wstring& source);
// Returns string.
operator HSTRING() const { return str_; }