| Index: content/browser/web_contents/web_contents_android.cc
|
| diff --git a/content/browser/web_contents/web_contents_android.cc b/content/browser/web_contents/web_contents_android.cc
|
| index 52702a412e4212ed0f6eb4f096851554f3345f16..1bef8a3c293fc4e4874296fb7f62aac40b68f9ae 100644
|
| --- a/content/browser/web_contents/web_contents_android.cc
|
| +++ b/content/browser/web_contents/web_contents_android.cc
|
| @@ -151,13 +151,11 @@ void WebContentsAndroid::SetHasPendingNavigationTransitionForTesting(
|
| BrowserThread::PostTask(
|
| BrowserThread::IO,
|
| FROM_HERE,
|
| - base::Bind(&TransitionRequestManager::AddPendingTransitionRequestData,
|
| - base::Unretained(TransitionRequestManager::GetInstance()),
|
| - frame->GetProcess()->GetID(),
|
| - frame->GetRoutingID(),
|
| - "*",
|
| - "",
|
| - ""));
|
| + base::Bind(
|
| + &TransitionRequestManager::AddPendingTransitionRequestDataForTesting,
|
| + base::Unretained(TransitionRequestManager::GetInstance()),
|
| + frame->GetProcess()->GetID(),
|
| + frame->GetRoutingID()));
|
| }
|
|
|
| void WebContentsAndroid::SetupTransitionView(JNIEnv* env,
|
|
|