| Index: chrome/browser/ui/views/external_tab_container_win.cc
|
| diff --git a/chrome/browser/ui/views/external_tab_container_win.cc b/chrome/browser/ui/views/external_tab_container_win.cc
|
| index 4753593ee5a02032526cce95e82325a5c3eb0079..9e8d8fac3969650604cb48a23977fd6d81713ef4 100644
|
| --- a/chrome/browser/ui/views/external_tab_container_win.cc
|
| +++ b/chrome/browser/ui/views/external_tab_container_win.cc
|
| @@ -434,9 +434,9 @@ WebContents* ExternalTabContainerWin::OpenURLFromTab(
|
| content::LoadCommittedDetails details;
|
| details.did_replace_entry = false;
|
|
|
| - scoped_refptr<history::HistoryAddPageArgs> add_page_args(
|
| + const history::HistoryAddPageArgs& add_page_args =
|
| tab_contents_->history_tab_helper()->
|
| - CreateHistoryAddPageArgs(params.url, details, nav_params));
|
| + CreateHistoryAddPageArgs(params.url, details, nav_params);
|
| tab_contents_->history_tab_helper()->
|
| UpdateHistoryForNavigation(add_page_args);
|
|
|
|
|