| Index: content/browser/frame_host/interstitial_page_impl.cc
|
| diff --git a/content/browser/frame_host/interstitial_page_impl.cc b/content/browser/frame_host/interstitial_page_impl.cc
|
| index 4fcdcfb7901569dc6094a8b9f27e9f3e551e2a5a..9e63d829f1ae2fa5b32dbb9a8aeae248441e0e42 100644
|
| --- a/content/browser/frame_host/interstitial_page_impl.cc
|
| +++ b/content/browser/frame_host/interstitial_page_impl.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "content/browser/frame_host/interstitial_page_impl.h"
|
|
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "base/bind.h"
|
| @@ -241,7 +242,7 @@ void InterstitialPageImpl::Show() {
|
| // Give delegates a chance to set some states on the navigation entry.
|
| delegate_->OverrideEntry(entry.get());
|
|
|
| - controller_->SetTransientEntry(entry.Pass());
|
| + controller_->SetTransientEntry(std::move(entry));
|
|
|
| static_cast<WebContentsImpl*>(web_contents_)->DidChangeVisibleSSLState();
|
| }
|
|
|