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

Unified Diff: chrome/browser/renderer_host/render_process_host.h

Issue 6201005: Initial support for partitioning cookies for isolated apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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/renderer_host/render_process_host.h
diff --git a/chrome/browser/renderer_host/render_process_host.h b/chrome/browser/renderer_host/render_process_host.h
index 1e8523b9e4b98659bb38191df4a5aae0371ec030..187d2897b151acdae72d4e3b56da842d2acc083e 100644
--- a/chrome/browser/renderer_host/render_process_host.h
+++ b/chrome/browser/renderer_host/render_process_host.h
@@ -17,6 +17,7 @@
#include "chrome/common/visitedlink_common.h"
#include "ipc/ipc_sync_channel.h"
+class Extension;
class Profile;
class URLRequestContextGetter;
struct ViewMsg_ClosePage_Params;
@@ -154,7 +155,8 @@ class RenderProcessHost : public IPC::Channel::Sender,
// that with no effect. Therefore, if the caller isn't sure about whether
// the process has been created, it should just call Init().
virtual bool Init(
- bool is_accessibility_enabled, bool is_extensions_process) = 0;
+ bool is_accessibility_enabled, bool is_extensions_process,
+ const Extension* installed_app) = 0;
// Gets the next available routing id.
virtual int GetNextRoutingID() = 0;

Powered by Google App Engine
This is Rietveld 408576698