Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10167)

Unified Diff: chrome/browser/extensions/unpacked_installer.cc

Issue 10451012: Revert 138795 - Revert "nss: revert encrypted and origin bound certificates support." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/unpacked_installer.cc
===================================================================
--- chrome/browser/extensions/unpacked_installer.cc (revision 138795)
+++ chrome/browser/extensions/unpacked_installer.cc (working copy)
@@ -132,7 +132,7 @@
scoped_refptr<const Extension> extension(extension_file_util::LoadExtension(
extension_path_,
Extension::LOAD,
- flags,
+ flags | Extension::FOLLOW_SYMLINKS_ANYWHERE,
&error));
if (!extension) {
@@ -195,7 +195,7 @@
scoped_refptr<const Extension> extension(extension_file_util::LoadExtension(
extension_path_,
Extension::LOAD,
- flags,
+ flags | Extension::FOLLOW_SYMLINKS_ANYWHERE,
&error));
if (!extension) {

Powered by Google App Engine
This is Rietveld 408576698