introduce concept of platform name, based on class name, because webpack.

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2017-05-29 19:50:04 +01:00
parent b9457a0681
commit d484372c7f

View file

@ -29,6 +29,11 @@ export default class BasePlatform {
this.errorDidOccur = false;
}
// Used primarily for Analytics
getHumanReadableName() {
return 'Base Platform';
}
setNotificationCount(count: number) {
this.notificationCount = count;
}