Fix build and ensure no breaking change

This commit is contained in:
Samuel Attard 2017-12-06 07:58:48 +11:00 committed by Cheng Zhao
parent 5f7a173d1d
commit 87c2f0f14f
8 changed files with 91 additions and 31 deletions

View file

@ -0,0 +1,18 @@
#include "brightray/common/application_info.h"
namespace brightray {
namespace {
std::string overriden_application_name_;
}
void OverrideApplicationName(const std::string& name) {
overriden_application_name_ = name;
}
std::string GetOverridenApplicationName() {
return overriden_application_name_;
}
} // namespace brightray