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

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

Issue 8585016: Don't use process isolation for bookmark apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflict. Created 9 years, 1 month 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/extension_service.cc
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index f2f72ce4a28c7f8146121f840047bbf6894fbc6b..854ef8b9a989882bca9720e4837da0c74dd6e1cb 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -2196,7 +2196,7 @@ const Extension* ExtensionService::GetDisabledExtensionByWebExtent(
bool ExtensionService::ExtensionBindingsAllowed(const GURL& url) {
// Allow bindings for all packaged extensions.
// Note that GetExtensionByURL may return an Extension for hosted apps
- // if the URL came from GetEffectiveURL.
+ // (excluding bookmark apps) if the URL came from GetEffectiveURL.
const Extension* extension = GetExtensionByURL(url);
if (extension && extension->GetType() != Extension::TYPE_HOSTED_APP)
return true;
« no previous file with comments | « chrome/browser/extensions/app_process_apitest.cc ('k') | chrome/browser/renderer_host/chrome_render_view_host_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698