163e2d3527
* 🔧 Basic 'are we in the desktop bridge' check * 🔧 Store the result of the call * 🔧 Create ToastNotifier correctly in UWP environment * 🔧 Actually, improve this all around * ❤️ Implement feedback * 🔧 Fix compiler issues * 🔧 Mutex is banned, go to option 2 * 🔧 Use getProcAddress * 📝 Make comment clearer * ❤️ Implement feedback
31 lines
793 B
C++
31 lines
793 B
C++
#ifndef BRIGHTRAY_COMMON_APPLICATION_INFO_H_
|
|
#define BRIGHTRAY_COMMON_APPLICATION_INFO_H_
|
|
|
|
#if defined(OS_WIN)
|
|
#include "base/strings/string16.h"
|
|
#include "brightray/browser/win/scoped_hstring.h"
|
|
#endif
|
|
|
|
#include <string>
|
|
|
|
namespace brightray {
|
|
|
|
void OverrideApplicationName(const std::string& name);
|
|
std::string GetOverriddenApplicationName();
|
|
|
|
void OverrideApplicationVersion(const std::string& version);
|
|
std::string GetOverriddenApplicationVersion();
|
|
|
|
std::string GetApplicationName();
|
|
std::string GetApplicationVersion();
|
|
|
|
#if defined(OS_WIN)
|
|
PCWSTR GetRawAppUserModelID();
|
|
bool GetAppUserModelID(ScopedHString* app_id);
|
|
void SetAppUserModelID(const base::string16& name);
|
|
bool IsRunningInDesktopBridge();
|
|
#endif
|
|
|
|
} // namespace brightray
|
|
|
|
#endif // BRIGHTRAY_COMMON_APPLICATION_INFO_H_
|