Merge pull request #5943 from bbondy/master

Allow obtaining system Pepper Flash path
This commit is contained in:
Cheng Zhao 2016-06-09 01:48:53 +00:00 committed by GitHub
commit b422c47b67
3 changed files with 5 additions and 0 deletions

View file

@ -110,6 +110,8 @@ int GetPathConstant(const std::string& name) {
return chrome::DIR_USER_PICTURES;
else if (name == "videos")
return chrome::DIR_USER_VIDEOS;
else if (name == "pepperFlashSystemPlugin")
return chrome::FILE_PEPPER_FLASH_SYSTEM_PLUGIN;
else
return -1;
}