Expose the method to JS and write a simple test.

This commit is contained in:
Charlie Hess 2016-06-01 18:56:25 -07:00
parent 0230567891
commit 587dd2fe51
2 changed files with 26 additions and 0 deletions

View file

@ -54,6 +54,7 @@ void SystemPreferences::BuildPrototype(
.SetMethod("unsubscribeNotification",
&SystemPreferences::UnsubscribeNotification)
.SetMethod("getUserDefault", &SystemPreferences::GetUserDefault)
.SetMethod("getGlobalDefault", &SystemPreferences::GetGlobalDefault)
#endif
.SetMethod("isDarkMode", &SystemPreferences::IsDarkMode);
}