| Index: chrome/browser/ui/browser_instant_controller.cc
|
| diff --git a/chrome/browser/ui/browser_instant_controller.cc b/chrome/browser/ui/browser_instant_controller.cc
|
| index 378d276493145d038bbe1351130e1e6dbb84e346..76f85cca74f46d09e1b886da46401696636b931a 100644
|
| --- a/chrome/browser/ui/browser_instant_controller.cc
|
| +++ b/chrome/browser/ui/browser_instant_controller.cc
|
| @@ -288,12 +288,14 @@ void BrowserInstantController::ReloadTabsInInstantProcess() {
|
| if (!contents)
|
| continue;
|
|
|
| - if (!instant_service->IsInstantProcess(
|
| - contents->GetRenderProcessHost()->GetID()))
|
| - continue;
|
| + // Send new search URLs to the renderer.
|
| + content::RenderProcessHost* rph = contents->GetRenderProcessHost();
|
| + instant_service->SendSearchURLsToRenderer(rph);
|
|
|
| // Reload the contents to ensure that it gets assigned to a non-priviledged
|
| // renderer.
|
| + if (!instant_service->IsInstantProcess(rph->GetID()))
|
| + continue;
|
| contents->GetController().Reload(false);
|
| }
|
| }
|
|
|