| Index: chrome/browser/renderer_host/render_view_host.cc
|
| diff --git a/chrome/browser/renderer_host/render_view_host.cc b/chrome/browser/renderer_host/render_view_host.cc
|
| index 4f9d87880e3b09bca35f911dcd8582bcc921a12a..2bf95a6af61deb0893cbb9cf215d11f53d6a5dde 100644
|
| --- a/chrome/browser/renderer_host/render_view_host.cc
|
| +++ b/chrome/browser/renderer_host/render_view_host.cc
|
| @@ -121,6 +121,7 @@ RenderViewHost::RenderViewHost(SiteInstance* instance,
|
| sudden_termination_allowed_(false),
|
| session_storage_namespace_(session_storage),
|
| is_extension_process_(false),
|
| + installed_app_(NULL),
|
| save_accessibility_tree_for_testing_(false),
|
| render_view_termination_status_(base::TERMINATION_STATUS_STILL_RUNNING) {
|
| if (!session_storage_namespace_) {
|
| @@ -147,7 +148,8 @@ bool RenderViewHost::CreateRenderView(const string16& frame_name) {
|
| // initialized it) or may not (we have our own process or the old process
|
| // crashed) have been initialized. Calling Init multiple times will be
|
| // ignored, so this is safe.
|
| - if (!process()->Init(renderer_accessible(), is_extension_process_))
|
| + if (!process()->Init(renderer_accessible(), is_extension_process_,
|
| + installed_app_))
|
| return false;
|
| DCHECK(process()->HasConnection());
|
| DCHECK(process()->profile());
|
|
|