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

Unified Diff: content/public/common/content_client.h

Issue 1377933004: Modify --isolate-extensions to not isolate hosted apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@no_isolate_apps3
Patch Set: One more comment fix. Created 5 years, 2 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: content/public/common/content_client.h
diff --git a/content/public/common/content_client.h b/content/public/common/content_client.h
index 2c016348dcc821da5e4bc9df6a56568022ae33b9..abe4512a783ff946ff72176b9ad5abff0a43e42d 100644
--- a/content/public/common/content_client.h
+++ b/content/public/common/content_client.h
@@ -147,9 +147,9 @@ class CONTENT_EXPORT ContentClient {
// trustworthy schemes should be added.
virtual void AddServiceWorkerSchemes(std::set<std::string>* schemes) {}
- // Gives the embedder a chance to register schemes for which site isolation
- // should be enabled.
- virtual void AddIsolatedSchemes(std::set<std::string>* schemes) {}
+ // Returns true if the embedder wishes to supplement the site isolation policy
+ // used by the content layer.
Charlie Reis 2015/10/12 23:13:28 nit: Let's say a bit more of what this implies (e.
ncarter (slow) 2015/10/13 20:22:11 Done.
+ virtual bool IsSupplementarySiteIsolationModeEnabled();
private:
friend class ContentClientInitializer; // To set these pointers.

Powered by Google App Engine
This is Rietveld 408576698