| Index: third_party/WebKit/public/platform/Platform.h
|
| diff --git a/third_party/WebKit/public/platform/Platform.h b/third_party/WebKit/public/platform/Platform.h
|
| index 72a3e189e3049825a6a3621c558bfaab13f5455d..05ec7493e6522eedb88d2b4a4d8aa7ab481725ae 100644
|
| --- a/third_party/WebKit/public/platform/Platform.h
|
| +++ b/third_party/WebKit/public/platform/Platform.h
|
| @@ -119,6 +119,7 @@ class WebThread;
|
| class WebTrialTokenValidator;
|
| class WebURL;
|
| class WebURLLoader;
|
| +class WebURLResponse;
|
| class WebUnitTestSupport;
|
| struct WebLocalizedString;
|
| struct WebSize;
|
| @@ -321,6 +322,10 @@ public:
|
|
|
| virtual bool portAllowed(const WebURL&) const { return false; }
|
|
|
| + // Returns true and stores the position of the end of the headers to |*end|
|
| + // if the headers part ends in |bytes[0..size]|. Returns false otherwise.
|
| + virtual bool parseMultipartHeadersFromBody(const char* bytes, size_t /* size */, WebURLResponse*, size_t* end) const { return false; }
|
| +
|
| // Plugins -------------------------------------------------------------
|
|
|
| // If refresh is true, then cached information should not be used to
|
|
|