electron / libchromiumcontent

Shared library build of Chromium’s Content module
MIT License
485 stars 183 forks source link

Fix can_create_window.patch #501

Closed codebytere closed 6 years ago

codebytere commented 6 years ago

Patch applies cleanly once more ✨

For https://github.com/electron/libchromiumcontent/pull/499.

/cc @alexeykuzmin

alexeykuzmin commented 6 years ago
./../../content/browser/frame_host/render_frame_host_impl.cc:2880:16: error: allocation of incomplete type 'content::ResourceRequestBody'
    body = new ResourceRequestBody;
               ^~~~~~~~~~~~~~~~~~~

ResourceRequestBody has been moved from content:: to network::. https://chromium-review.googlesource.com/864422

alexeykuzmin commented 6 years ago
./../../content/browser/frame_host/render_frame_host_impl.cc:2881:26: error: no member named 'DataElement' in namespace 'storage'
    std::vector<storage::DataElement> elements;
                ~~~~~~~~~^

DataElement has been moved to network::. https://chromium-review.googlesource.com/861334