2018-10-24 12:49:10 +02:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 13:56:58 -07:00
|
|
|
#ifndef SHELL_COMMON_APPLICATION_INFO_H_
|
|
|
|
#define SHELL_COMMON_APPLICATION_INFO_H_
|
2013-04-08 12:41:30 -04:00
|
|
|
|
2017-12-06 07:58:48 +11:00
|
|
|
#if defined(OS_WIN)
|
2018-06-21 16:45:45 -07:00
|
|
|
#include "base/strings/string16.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/win/scoped_hstring.h"
|
2017-12-06 07:58:48 +11:00
|
|
|
#endif
|
|
|
|
|
2013-04-08 12:41:30 -04:00
|
|
|
#include <string>
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2013-04-08 12:41:30 -04:00
|
|
|
|
2017-12-06 07:58:48 +11:00
|
|
|
void OverrideApplicationName(const std::string& name);
|
2018-02-20 10:16:51 -06:00
|
|
|
std::string GetOverriddenApplicationName();
|
|
|
|
|
|
|
|
void OverrideApplicationVersion(const std::string& version);
|
|
|
|
std::string GetOverriddenApplicationVersion();
|
2017-12-06 07:58:48 +11:00
|
|
|
|
2013-04-08 12:41:30 -04:00
|
|
|
std::string GetApplicationName();
|
|
|
|
std::string GetApplicationVersion();
|
2019-01-22 00:02:34 +05:30
|
|
|
// Returns the user agent of Electron.
|
|
|
|
std::string GetApplicationUserAgent();
|
2013-04-08 12:41:30 -04:00
|
|
|
|
2017-12-06 07:58:48 +11:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
PCWSTR GetRawAppUserModelID();
|
|
|
|
bool GetAppUserModelID(ScopedHString* app_id);
|
|
|
|
void SetAppUserModelID(const base::string16& name);
|
2018-09-05 09:06:29 -07:00
|
|
|
bool IsRunningInDesktopBridge();
|
2017-12-06 07:58:48 +11:00
|
|
|
#endif
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2013-04-08 12:41:30 -04:00
|
|
|
|
2019-06-19 13:56:58 -07:00
|
|
|
#endif // SHELL_COMMON_APPLICATION_INFO_H_
|