diff options
Diffstat (limited to 'chrome/browser/extensions/unpacked_installer.cc')
-rw-r--r-- | chrome/browser/extensions/unpacked_installer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/unpacked_installer.cc b/chrome/browser/extensions/unpacked_installer.cc index 3bfb522..39e5513 100644 --- a/chrome/browser/extensions/unpacked_installer.cc +++ b/chrome/browser/extensions/unpacked_installer.cc @@ -132,7 +132,7 @@ void UnpackedInstaller::LoadFromCommandLine(const FilePath& path_in) { scoped_refptr<const Extension> extension(extension_file_util::LoadExtension( extension_path_, Extension::LOAD, - flags | Extension::FOLLOW_SYMLINKS_ANYWHERE, + flags, &error)); if (!extension) { @@ -195,7 +195,7 @@ void UnpackedInstaller::LoadWithFileAccess(bool allow_file_access) { scoped_refptr<const Extension> extension(extension_file_util::LoadExtension( extension_path_, Extension::LOAD, - flags | Extension::FOLLOW_SYMLINKS_ANYWHERE, + flags, &error)); if (!extension) { |