| Index: chrome/browser/extensions/extension_webstore_private_api.cc
 | 
| diff --git a/chrome/browser/extensions/extension_webstore_private_api.cc b/chrome/browser/extensions/extension_webstore_private_api.cc
 | 
| index ca7e9845f1019518dfeb652448122acdc5259b58..ff8b374af687207297852ba4475c7b5679e041a7 100644
 | 
| --- a/chrome/browser/extensions/extension_webstore_private_api.cc
 | 
| +++ b/chrome/browser/extensions/extension_webstore_private_api.cc
 | 
| @@ -164,13 +164,12 @@ class SafeBeginInstallHelper : public UtilityProcessHost::Client {
 | 
|          BrowserThread::IO,
 | 
|          FROM_HERE,
 | 
|          NewRunnableMethod(this,
 | 
| -                          &SafeBeginInstallHelper::StartWorkOnIOThread,
 | 
| -                          g_browser_process->resource_dispatcher_host()));
 | 
| +                          &SafeBeginInstallHelper::StartWorkOnIOThread));
 | 
|    }
 | 
|  
 | 
| -  void StartWorkOnIOThread(ResourceDispatcherHost* rdh) {
 | 
| +  void StartWorkOnIOThread() {
 | 
|      CHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
 | 
| -    utility_host_ = new UtilityProcessHost(rdh, this, BrowserThread::IO);
 | 
| +    utility_host_ = new UtilityProcessHost(this, BrowserThread::IO);
 | 
|      utility_host_->StartBatchMode();
 | 
|      if (icon_data_.empty())
 | 
|        icon_decode_complete_ = true;
 | 
| 
 |