• Andras Becsi's avatar
    Add public QtWebEngineCore C++ API · bfef77e3
    Andras Becsi authored
    This patch introduces a new public C++ API layer in preparation to make
    it possible to integrate with lower level Chromium features related mostly
    to networking operations like accessing and blocking cookies, custom
    request headers, etc.
    This API layer can be used both by Qt Widgets and Qt Quick applications
    with a small C++ core. It should contatain API to access features that
    usually run on the IO thread to make it possible to perform heavy tasks
    that would otherwise require costly context switches to the UI thread.
    Furthermore for these features a QML API does either not make sense,
    since they are non-UI-related, or a QML API is simply not feasible,
    because the API is meant for advanced usecases like web browser
    development (i.e. custom protocol handlers, network traffic
    interception cookie syncing, etc.).
    In the long term this layer could also make it possible to reduce code
    duplication in the widgets and quick layers by moving common parts to
    the core layer.
    The new...
    bfef77e3