| Index: chrome/common/mac/cfbundle_blocker.mm
|
| diff --git a/chrome/common/mac/cfbundle_blocker.mm b/chrome/common/mac/cfbundle_blocker.mm
|
| index c4c29f29db795a40a26847acdb08bfea07f59b3e..3dbc34f90f1973245d44612d45150ae041113010 100644
|
| --- a/chrome/common/mac/cfbundle_blocker.mm
|
| +++ b/chrome/common/mac/cfbundle_blocker.mm
|
| @@ -175,12 +175,14 @@ Boolean ChromeCFBundleLoadExecutableAndReturnError(CFBundleRef bundle,
|
| NSString* bundle_id_print = bundle_id ? bundle_id : @"(nil)";
|
| NSString* version_print = version ? version : @"(nil)";
|
|
|
| - DLOG(INFO) << "Blocking attempt to load bundle "
|
| - << [bundle_id_print UTF8String]
|
| - << " version "
|
| - << [version_print UTF8String]
|
| - << " at "
|
| - << [path fileSystemRepresentation];
|
| + // Provide a hint for the user (or module developer) to figure out
|
| + // that the bundle was blocked.
|
| + LOG(INFO) << "Blocking attempt to load bundle "
|
| + << [bundle_id_print UTF8String]
|
| + << " version "
|
| + << [version_print UTF8String]
|
| + << " at "
|
| + << [path fileSystemRepresentation];
|
|
|
| if (error) {
|
| base::mac::ScopedCFTypeRef<CFStringRef> app_bundle_id(
|
|
|