| Index: chrome/browser/history/history_tab_helper.cc
|
| diff --git a/chrome/browser/history/history_tab_helper.cc b/chrome/browser/history/history_tab_helper.cc
|
| index fc4db9627cfac2965946d6879d63c85d29d10b0d..56b2dee05f75f9aae7aa63fdebe92ff92322bfc6 100644
|
| --- a/chrome/browser/history/history_tab_helper.cc
|
| +++ b/chrome/browser/history/history_tab_helper.cc
|
| @@ -8,7 +8,7 @@
|
|
|
| #include "chrome/browser/history/history_service.h"
|
| #include "chrome/browser/history/history_service_factory.h"
|
| -#include "chrome/browser/instant/instant_loader.h"
|
| +#include "chrome/browser/instant/instant_overlay.h"
|
| #include "chrome/browser/prerender/prerender_contents.h"
|
| #include "chrome/browser/prerender/prerender_manager.h"
|
| #include "chrome/browser/prerender/prerender_manager_factory.h"
|
| @@ -127,10 +127,10 @@ void HistoryTabHelper::DidNavigateAnyFrame(
|
| }
|
| }
|
|
|
| - InstantLoader* instant_loader =
|
| - InstantLoader::FromWebContents(web_contents());
|
| - if (instant_loader) {
|
| - instant_loader->DidNavigate(add_page_args);
|
| + InstantOverlay* instant_overlay =
|
| + InstantOverlay::FromWebContents(web_contents());
|
| + if (instant_overlay) {
|
| + instant_overlay->DidNavigate(add_page_args);
|
| return;
|
| }
|
|
|
|
|