Add "cache" and "userCache" directories

This commit is contained in:
Cheng Zhao 2015-01-18 21:09:42 -08:00
parent 9a04f67c0a
commit ce52a87477
5 changed files with 14 additions and 2 deletions

View file

@ -67,6 +67,10 @@ int GetPathConstant(const std::string& name) {
return brightray::DIR_APP_DATA;
else if (name == "userData")
return brightray::DIR_USER_DATA;
else if (name == "cache")
return brightray::DIR_CACHE;
else if (name == "userCache")
return brightray::DIR_USER_CACHE;
else if (name == "home")
return base::DIR_HOME;
else