| Index: content/browser/web_contents/web_contents_impl.cc | 
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc | 
| index 85749836e370145c26ae24632890c2f22bd3dd14..0fa2be2b24da2cfaf42232620a78d62d04805807 100644 | 
| --- a/content/browser/web_contents/web_contents_impl.cc | 
| +++ b/content/browser/web_contents/web_contents_impl.cc | 
| @@ -526,6 +526,7 @@ bool WebContentsImpl::OnMessageReceived(RenderViewHost* render_view_host, | 
| OnMediaPausedNotification) | 
| IPC_MESSAGE_HANDLER(FrameHostMsg_DidFirstVisuallyNonEmptyPaint, | 
| OnFirstVisuallyNonEmptyPaint) | 
| +    IPC_MESSAGE_HANDLER(FrameHostMsg_WebUIMojoMainRan, OnWebUIMojoMainRan) | 
| IPC_MESSAGE_HANDLER(ViewHostMsg_DidLoadResourceFromMemoryCache, | 
| OnDidLoadResourceFromMemoryCache) | 
| IPC_MESSAGE_HANDLER(ViewHostMsg_DidDisplayInsecureContent, | 
| @@ -2969,6 +2970,12 @@ void WebContentsImpl::OnFirstVisuallyNonEmptyPaint() { | 
| DidFirstVisuallyNonEmptyPaint()); | 
| } | 
|  | 
| +void WebContentsImpl::OnWebUIMojoMainRan() { | 
| +  FOR_EACH_OBSERVER(WebContentsObserver, | 
| +                    observers_, | 
| +                    DidRunWebUIMojoMain()); | 
| +} | 
| + | 
| void WebContentsImpl::DidChangeVisibleSSLState() { | 
| if (delegate_) | 
| delegate_->VisibleSSLStateChanged(this); | 
|  |