Java Code Examples for org.chromium.content.browser.ContentViewCore#addGestureStateListener()

The following examples show how to use org.chromium.content.browser.ContentViewCore#addGestureStateListener() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ContextualSearchTabHelper.java    From delion with Apache License 2.0 5 votes vote down vote up
/**
 * Adds Contextual Search hooks for its client and listener to the given content view core.
 * @param cvc The content view core to attach the gesture state listener to.
 */
private void addContextualSearchHooks(ContentViewCore cvc) {
    ContextualSearchManager manager = getContextualSearchManager();
    if (mGestureStateListener == null && manager != null) {
        mGestureStateListener = manager.getGestureStateListener();
        cvc.addGestureStateListener(mGestureStateListener);
        cvc.setContextualSearchClient(manager);
    }
}
 
Example 2
Source File: ContextualSearchTabHelper.java    From AndroidChromium with Apache License 2.0 5 votes vote down vote up
/**
 * Adds Contextual Search hooks for its client and listener to the given content view core.
 * @param cvc The content view core to attach the gesture state listener to.
 */
private void addContextualSearchHooks(ContentViewCore cvc) {
    ContextualSearchManager manager = getContextualSearchManager();
    if (mGestureStateListener == null && manager != null) {
        mGestureStateListener = manager.getGestureStateListener();
        cvc.addGestureStateListener(mGestureStateListener);
        cvc.setContextualSearchClient(manager);
    }
}
 
Example 3
Source File: ContextualSearchTabHelper.java    From 365browser with Apache License 2.0 5 votes vote down vote up
/**
 * Adds Contextual Search hooks for its client and listener to the given content view core.
 * @param cvc The content view core to attach the gesture state listener to.
 */
private void addContextualSearchHooks(ContentViewCore cvc) {
    ContextualSearchManager manager = getContextualSearchManager();
    if (mGestureStateListener == null && manager != null) {
        mGestureStateListener = manager.getGestureStateListener();
        cvc.addGestureStateListener(mGestureStateListener);
        cvc.setSelectionClient(manager);
    }
}