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

Unified Diff: content/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: Add ChromeURLRequestContext::Copy. 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: content/browser/renderer_host/render_process_host.h
diff --git a/content/browser/renderer_host/render_process_host.h b/content/browser/renderer_host/render_process_host.h
index cc469fa5a07a15a3d8ede4df18886e9af3c7cd03..8eb91a9077b5cf42e6c02037cec19c75bbc1af07 100644
--- a/content/browser/renderer_host/render_process_host.h
+++ b/content/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;
@@ -153,8 +154,9 @@ class RenderProcessHost : public IPC::Channel::Sender,
// be called once before the object can be used, but can be called after
// 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;
+ virtual bool Init(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