With bug 37175, which factors out DocumentWriter from FrameLoader, the API FrameLoader::responseMIMEType() is now DocumentWriter::mimeType(). #if ENABLE(XHTMLMP) bool Document::isXHTMLMPDocument() const { ... return frame()->loader()->responseMIMEType() == "application/vnd.wap.xhtml+xml"; } #endif should be changed to : return frame()->loader()->writer()->mimeType() == "application/vnd.wap.xhtml+xml";
Created attachment 53933 [details] This patch fixes the build problem caused by defect 37175 (only fails when xhtmlmp is enabled) This patch fixes the build problem caused by defect 37175 (only fails when xhtmlmp is enabled)
Comment on attachment 53933 [details] This patch fixes the build problem caused by defect 37175 (only fails when xhtmlmp is enabled) Clearing flags on attachment: 53933 Committed r58041: <http://trac.webkit.org/changeset/58041>
All reviewed patches have been landed. Closing bug.