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

Unified Diff: chrome/renderer/render_thread.cc

Issue 3210007: Add support for a "split" incognito behavior for extensions. (Closed)
Patch Set: latest Created 10 years, 4 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
« no previous file with comments | « chrome/renderer/render_thread.h ('k') | chrome/renderer/resources/extension_process_bindings.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_thread.cc
diff --git a/chrome/renderer/render_thread.cc b/chrome/renderer/render_thread.cc
index 4ad6a3fb1e528622ff38c3d267297b91add0b651..ae7ae65d797d3f9a87692958e09f16d0c1d2ab89 100644
--- a/chrome/renderer/render_thread.cc
+++ b/chrome/renderer/render_thread.cc
@@ -548,8 +548,9 @@ void RenderThread::OnExtensionSetHostPermissions(
}
void RenderThread::OnExtensionSetIncognitoEnabled(
- const std::string& extension_id, bool enabled) {
- ExtensionProcessBindings::SetIncognitoEnabled(extension_id, enabled);
+ const std::string& extension_id, bool enabled, bool incognito_split_mode) {
+ ExtensionProcessBindings::SetIncognitoEnabled(extension_id, enabled,
+ incognito_split_mode);
}
void RenderThread::OnDOMStorageEvent(
« no previous file with comments | « chrome/renderer/render_thread.h ('k') | chrome/renderer/resources/extension_process_bindings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698