| 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 a938e330d89984cf0a2911855a2209a2f6ea33ba..10b0c117d7f29cbc16b9e2e16f6d9f9396fbaa1d 100644
 | 
| --- a/content/browser/web_contents/web_contents_impl.cc
 | 
| +++ b/content/browser/web_contents/web_contents_impl.cc
 | 
| @@ -4183,6 +4183,11 @@ void WebContentsImpl::OnUserGesture() {
 | 
|      rdh->OnUserGesture(this);
 | 
|  }
 | 
|  
 | 
| +void WebContentsImpl::OnUserInteraction(const blink::WebInputEvent::Type type) {
 | 
| +  FOR_EACH_OBSERVER(WebContentsObserver, observers_,
 | 
| +                    DidGetUserInteraction(type));
 | 
| +}
 | 
| +
 | 
|  void WebContentsImpl::OnIgnoredUIEvent() {
 | 
|    // Notify observers.
 | 
|    FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidGetIgnoredUIEvent());
 | 
| 
 |