summaryrefslogtreecommitdiffstats
path: root/webkit/glue/multipart_response_delegate.h
diff options
context:
space:
mode:
authortony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-04 09:29:24 +0000
committertony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-04 09:29:24 +0000
commitd94dc1e2a900b936a731046f436d79388bfd8005 (patch)
tree507b745ca06f9891ca4d8c2c646259b91b4a6984 /webkit/glue/multipart_response_delegate.h
parenta1b5b0a8c82a4ab349d41b854ba84cff94eb72a3 (diff)
downloadchromium_src-d94dc1e2a900b936a731046f436d79388bfd8005.zip
chromium_src-d94dc1e2a900b936a731046f436d79388bfd8005.tar.gz
chromium_src-d94dc1e2a900b936a731046f436d79388bfd8005.tar.bz2
Avoid having every frame of a multipart response create a new
row in the history database. We do this by setting a flag on the WebURLResponse created for multipart responses and not updating the history db when this flag is set. Take 2, the last landing failed because we weren't always initializing m_isMultipartPayload in ResourceResponse. BUG=34350 Review URL: http://codereview.chromium.org/668050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40613 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/multipart_response_delegate.h')
-rw-r--r--webkit/glue/multipart_response_delegate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/glue/multipart_response_delegate.h b/webkit/glue/multipart_response_delegate.h
index 8ac496e..268999b 100644
--- a/webkit/glue/multipart_response_delegate.h
+++ b/webkit/glue/multipart_response_delegate.h
@@ -130,6 +130,9 @@ class MultipartResponseDelegate {
// processing AddData requests.
bool stop_sending_;
+ // true after we've sent our first response to the WebURLLoaderClient.
+ bool has_sent_first_response_;
+
DISALLOW_COPY_AND_ASSIGN(MultipartResponseDelegate);
};