| Index: android_webview/native/aw_settings.cc
|
| diff --git a/android_webview/native/aw_settings.cc b/android_webview/native/aw_settings.cc
|
| index 3779cd80a2768f85e9a6e0063fc358ddf81bf9ad..ffcdd6cf5b54c410974a9b222d8ec47f7eb011f7 100644
|
| --- a/android_webview/native/aw_settings.cc
|
| +++ b/android_webview/native/aw_settings.cc
|
| @@ -262,7 +262,7 @@ void AwSettings::RenderViewCreated(content::RenderViewHost* render_view_host) {
|
| // we shouldn't have to deal with the multiple RVH per WebContents case. That
|
| // in turn means that the newly created RVH is always the 'current' RVH
|
| // (since we only ever go from 0 to 1 RVH instances) and hence the DCHECK.
|
| - DCHECK(web_contents()->GetRenderViewHost() == render_view_host);
|
| + DCHECK_EQ(render_view_host, web_contents()->GetRenderViewHost());
|
|
|
| UpdateEverything();
|
| }
|
|
|