| Index: chrome/renderer/chrome_content_renderer_client.cc
|
| diff --git a/chrome/renderer/chrome_content_renderer_client.cc b/chrome/renderer/chrome_content_renderer_client.cc
|
| index ec4c0d63c5aebcf8c33f79a300ff42577c472938..e9593333c701e223f14a215642be4c4bf82f9cfa 100644
|
| --- a/chrome/renderer/chrome_content_renderer_client.cc
|
| +++ b/chrome/renderer/chrome_content_renderer_client.cc
|
| @@ -1063,13 +1063,6 @@ bool ChromeContentRendererClient::ShouldFork(WebLocalFrame* frame,
|
| return true;
|
| }
|
|
|
| - // For now, we skip the rest for POST submissions. This is because
|
| - // http://crbug.com/101395 is more likely to cause compatibility issues
|
| - // with hosted apps and extensions than WebUI pages. We will remove this
|
| - // check when cross-process POST submissions are supported.
|
| - if (http_method != "GET")
|
| - return false;
|
| -
|
| // If |url| matches one of the prerendered URLs, stop this navigation and try
|
| // to swap in the prerendered page on the browser process. If the prerendered
|
| // page no longer exists by the time the OpenURL IPC is handled, a normal
|
|
|