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

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: Refactor and address comments. Created 9 years, 10 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 8c08fc65046521b65a96f3190d09940ed449c867..e6d8d50787e204da17a849ae5845757bdafd0955 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -350,14 +350,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