| Index: chrome/browser/dom_ui/dom_ui_contents.cc
|
| ===================================================================
|
| --- chrome/browser/dom_ui/dom_ui_contents.cc (revision 11321)
|
| +++ chrome/browser/dom_ui/dom_ui_contents.cc (working copy)
|
| @@ -174,8 +174,8 @@
|
| }
|
|
|
| void DOMUIContents::RenderViewCreated(RenderViewHost* render_view_host) {
|
| - DCHECK(current_ui_);
|
| - current_ui_->RenderViewCreated(render_view_host);
|
| + if (current_ui_)
|
| + current_ui_->RenderViewCreated(render_view_host);
|
| }
|
|
|
| bool DOMUIContents::ShouldDisplayFavIcon() {
|
|
|