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

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

Issue 6201005: Initial support for partitioning cookies for isolated apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix automation_util and thread issue. Created 9 years, 9 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/extension_service.cc
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index 7d6d5e1061094e1ab03bfb5a7370499ecd8c337b..249084f30f7081234afd073f7da2efdfe2a9801b 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -326,14 +326,22 @@ bool ExtensionService::IsDownloadFromMiniGallery(const GURL& download_url) {
false); // case_sensitive
}
-bool ExtensionService::IsInstalledApp(const GURL& url) {
+const Extension* ExtensionService::GetInstalledApp(const GURL& url) {
// Check for hosted app.
- if (GetExtensionByWebExtent(url) != NULL)
- return true;
+ const Extension* app = GetExtensionByWebExtent(url);
+ if (app)
+ return app;
// Check for packaged app.
- const Extension* extension = GetExtensionByURL(url);
- return extension != NULL && extension->is_app();
+ app = GetExtensionByURL(url);
+ if (app && app->is_app())
+ return app;
+
+ return NULL;
+}
+
+bool ExtensionService::IsInstalledApp(const GURL& url) {
+ return !!GetInstalledApp(url);
}
// static

Powered by Google App Engine
This is Rietveld 408576698