Interface CefWebPluginInfoVisitor


  • public interface CefWebPluginInfoVisitor
    Interface to implement for visiting web plugin information. The methods of this class will be called on the browser process UI thread.
    • Method Detail

      • visit

        boolean visit​(CefWebPluginInfo info,
                      int count,
                      int total)
        Method that will be called once for each plugin. This method may never be called if no plugins are found.
        Parameters:
        info - Information for the current plugin. Instance only valid within the scope of this method.
        count - The 0-based index for the current plugin.
        total - The total number of plugins.
        Returns:
        True to continue visiting plugins or false to stop.