| Index: content/browser/android/web_contents_observer_proxy.cc
|
| diff --git a/content/browser/android/web_contents_observer_proxy.cc b/content/browser/android/web_contents_observer_proxy.cc
|
| index dfa52cfb2112afb760c33379abdd1dc26136607c..e1f7cc768ca45525e68e86118fab20e1929da4d1 100644
|
| --- a/content/browser/android/web_contents_observer_proxy.cc
|
| +++ b/content/browser/android/web_contents_observer_proxy.cc
|
| @@ -94,7 +94,7 @@ void WebContentsObserverProxy::DidStartLoading() {
|
| ScopedJavaLocalRef<jobject> obj(java_observer_);
|
| ScopedJavaLocalRef<jstring> jstring_url(
|
| ConvertUTF8ToJavaString(env, web_contents()->GetVisibleURL().spec()));
|
| - if (auto entry = web_contents()->GetController().GetPendingEntry()) {
|
| + if (auto* entry = web_contents()->GetController().GetPendingEntry()) {
|
| base_url_of_last_started_data_url_ = entry->GetBaseURLForDataURL();
|
| }
|
| Java_WebContentsObserverProxy_didStartLoading(env, obj.obj(),
|
|
|