Fix cpplint errors in main_delegate.cc
This commit is contained in:
parent
32f4862e56
commit
51a2779fdb
1 changed files with 4 additions and 2 deletions
|
@ -53,8 +53,10 @@ void MainDelegate::InitializeResourceBundle() {
|
||||||
|
|
||||||
std::vector<base::FilePath> pak_paths;
|
std::vector<base::FilePath> pak_paths;
|
||||||
AddPakPaths(&pak_paths);
|
AddPakPaths(&pak_paths);
|
||||||
for (auto it = pak_paths.begin(), end = pak_paths.end(); it != end; ++it)
|
for (auto it = pak_paths.begin(), end = pak_paths.end(); it != end; ++it) {
|
||||||
ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath(*it, ui::SCALE_FACTOR_NONE);
|
ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath(
|
||||||
|
*it, ui::SCALE_FACTOR_NONE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace brightray
|
} // namespace brightray
|
||||||
|
|
Loading…
Reference in a new issue