Skip to content

Commit

Permalink
Disabled passwords import for OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
spylogsster committed Jul 21, 2022
1 parent 10b3d70 commit b95029e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions chromium_src/chrome/browser/importer/importer_list.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ void AddChromeToProfiles(std::vector<importer::SourceProfile>* profiles,
profile->begin(), profile->end())),
&items))
continue;
#if BUILDFLAG(IS_MAC)
// https://github.com/brave/brave-browser/issues/24130
if (type == importer::TYPE_OPERA && (items & importer::PASSWORDS)) {
items ^= importer::PASSWORDS;
}
#endif
importer::SourceProfile chrome;
std::string importer_name(brand);
importer_name.append(*name);
Expand Down

0 comments on commit b95029e

Please sign in to comment.