Add a stub application_info_win.cc
This commit is contained in:
parent
12d01e4fd5
commit
7e03f93dcd
2 changed files with 14 additions and 0 deletions
|
@ -52,6 +52,7 @@
|
||||||
'browser/url_request_context_getter.h',
|
'browser/url_request_context_getter.h',
|
||||||
'common/application_info.h',
|
'common/application_info.h',
|
||||||
'common/application_info_mac.mm',
|
'common/application_info_mac.mm',
|
||||||
|
'common/application_info_win.cc',
|
||||||
'common/content_client.cc',
|
'common/content_client.cc',
|
||||||
'common/content_client.h',
|
'common/content_client.h',
|
||||||
'common/mac/foundation_util.h',
|
'common/mac/foundation_util.h',
|
||||||
|
|
13
brightray/common/application_info_win.cc
Normal file
13
brightray/common/application_info_win.cc
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#include "common/application_info.h"
|
||||||
|
|
||||||
|
namespace brightray {
|
||||||
|
|
||||||
|
std::string GetApplicationName() {
|
||||||
|
return std::string();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string GetApplicationVersion() {
|
||||||
|
return std::string();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue