Index: chrome/common/extensions/extension.cc |
diff --git a/chrome/common/extensions/extension.cc b/chrome/common/extensions/extension.cc |
index 56f942134edb62bf21450d9b42c7f19a78857ba0..5a67fdf5fbc136177e64ace97331e8efb340778c 100644 |
--- a/chrome/common/extensions/extension.cc |
+++ b/chrome/common/extensions/extension.cc |
@@ -2757,8 +2757,7 @@ bool Extension::ShowConfigureContextMenus() const { |
bool Extension::ImplicitlyDelaysNetworkStartup() const { |
// Network requests should be deferred until any extensions that might want |
// to observe or modify them are loaded. |
- return HasAPIPermission(ExtensionAPIPermission::kWebNavigation) || |
- HasAPIPermission(ExtensionAPIPermission::kWebRequest); |
+ return HasAPIPermission(ExtensionAPIPermission::kWebRequest); |
Matt Perry
2011/12/12 20:29:55
Can you change this to kWebRequestBlocking while y
jochen (gone - plz use gerrit)
2011/12/12 20:42:59
If I do that, I can't merge anymore - M16 doesn't
Matt Perry
2011/12/12 21:08:40
Oh, is it still possible to merge to M16? If so, c
|
} |
bool Extension::CanSpecifyAPIPermission( |