1. 22 Mar, 2018 - 9 commits
  2. 21 Mar, 2018 - 1 commit
  3. 20 Mar, 2018 - 7 commits
  4. 18 Mar, 2018 - 4 commits
  5. 17 Mar, 2018 - 3 commits
  6. 16 Mar, 2018 - 1 commit
  7. 15 Mar, 2018 - 5 commits
  8. 14 Mar, 2018 - 2 commits
  9. 13 Mar, 2018 - 4 commits
    • Michal Klocek's avatar
      Fix freezes of glx context, update Chromium · fde0040d
      Michal Klocek authored
      
      Bring back switch for QSurfaceFormat::CompatibilityProfile.
      This commit pulls in corresponding change in Chromium.
      
      Change-Id: I1f1b139acdda8a2e7ce7e71f2675e797dcfdb9e3
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
      fde0040d
    • Jüri Valdmann's avatar
      Fix active URLRequest tracking in NetworkDelegateQt · 31a954a5
      Jüri Valdmann authored
      
      NetworkDelegateQt maintains a set of pointers
      
          QSet<net::URLRequest *> m_activeRequests
      
      Pointers are inserted in OnBeforeURLRequest, checked in
      CompleteURLRequestOnIOThread, and removed in OnURLRequestDestroyed. This design
      breaks however if malloc decides to reuse the address of a recently-freed
      URLRequest for a new one. For example:
      
      1. A new URLRequest is created and passed to OnBeforeURLRequest. Inside this
      method a pointer is added to m_activeRequests and a task is posted to the UI
      thread.
      
      2. The URLRequest is destroyed and OnURLRequestDestroyed is called. The pointer
      is removed from the set.
      
      3. A new URLRequest is created at the same address and again passed to
      OnBeforeURLRequest. The pointer is added back to the set.
      
      4. The task from step 1 finally returns from the UI thread to the IO thread by
      executing CompleteURLRequestOnIOThread. This method is supposed to invoke a
      callback, but only if the original URLRequest hasn't been destroyed yet. So it
      checks if the URLRequest is still in the m_activeRequests set, sees that it is,
      and invokes the callback. Of course this does not work since in actuality we are
      dealing with a completely different URLRequest object that just happens to live
      at the same address.
      
      Fix by changing the tracking to work per-task and not per-URLRequest. The new
      URLRequestNotification class encapsulates the logic for delivering the
      notification and completing the request while dealing with potential
      mid-sequence URLRequest destruction.
      
      Change-Id: I0f61df0dccb9cb2b60893cd4d8f1b4bba844a4cd
      Reviewed-by: default avatarPeter Varga <pvarga@inf.u-szeged.hu>
      31a954a5
    • Leena Miettinen's avatar
      Doc: Remove broken link from web engine download item docs · 7863f88b
      Leena Miettinen authored
      
      The doucmented enumerations are obsolete, so the link is not
      really useful anymore.
      
      Change-Id: I9902ed18caa2e8a7a9bbb7935cbd9bb9ae6a88c8
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
      7863f88b
    • Leena Miettinen's avatar
      Doc: Fix function signatures in docs · 595b3a9a
      Leena Miettinen authored
      
      The "request" parameter has been renamed for
      QWebEnginePage::fullScreenRequested() and
      QWebEnginePage::quotaPermissionRequested(), which
      causes QDoc warnings and broken docs.
      
      Change-Id: I58ada7c882e381a6ab008f5523ca7bcdfc3e8212
      Reviewed-by: default avatarSzabolcs David <davidsz@inf.u-szeged.hu>
      Reviewed-by: default avatarJüri Valdmann <juri.valdmann@qt.io>
      Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
      595b3a9a
  10. 12 Mar, 2018 - 3 commits
  11. 08 Mar, 2018 - 1 commit