This source file includes following definitions.
- navigationEntryCommitted
- nativeUpdateAutoplayStatus
package org.chromium.chrome.browser;
import org.chromium.content.browser.ContentViewCore;
import org.chromium.content.browser.WebContentsObserverAndroid;
import org.chromium.content_public.browser.WebContents;
public class VoiceSearchTabHelper extends WebContentsObserverAndroid {
private WebContents mWebContents;
public VoiceSearchTabHelper(ContentViewCore contentViewCore) {
super(contentViewCore);
mWebContents = contentViewCore.getWebContents();
}
@Override
public void navigationEntryCommitted() {
nativeUpdateAutoplayStatus(mWebContents);
}
private native void nativeUpdateAutoplayStatus(WebContents webContents);
}