| Index: content/browser/browser_plugin/browser_plugin_embedder.cc
|
| diff --git a/content/browser/browser_plugin/browser_plugin_embedder.cc b/content/browser/browser_plugin/browser_plugin_embedder.cc
|
| index 3591decaaf9592fc0b056c6ef8fed07102b15ec2..a4185c346ae1ae322a9216b007d591bf1bd8192d 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_embedder.cc
|
| +++ b/content/browser/browser_plugin/browser_plugin_embedder.cc
|
| @@ -189,9 +189,12 @@ void BrowserPluginEmbedder::OnGuestCallback(
|
| }
|
|
|
| scoped_ptr<base::DictionaryValue> copy_extra_params(extra_params->DeepCopy());
|
| + StorageInfo storage_info;
|
| + storage_info.partition_id = params.storage_partition_id;
|
| + storage_info.persist = params.persist_storage;
|
| guest = guest_manager->CreateGuest(
|
| GetWebContents()->GetSiteInstance(),
|
| - instance_id, params,
|
| + instance_id, storage_info,
|
| copy_extra_params.Pass());
|
| if (guest) {
|
| GetContentClient()->browser()->GuestWebContentsAttached(
|
|
|