summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_frame_automation.cc
diff options
context:
space:
mode:
authortommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-29 03:57:23 +0000
committertommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-29 03:57:23 +0000
commitc5a83288e55153c3ebfdfbb79157ee7804184a4a (patch)
tree19b7c0cf85c33ff6111f5d52a7ad84afb89f3e97 /chrome_frame/chrome_frame_automation.cc
parent9cb79c01841c4820fc35ab70cfc8daf61ee7405b (diff)
downloadchromium_src-c5a83288e55153c3ebfdfbb79157ee7804184a4a.zip
chromium_src-c5a83288e55153c3ebfdfbb79157ee7804184a4a.tar.gz
chromium_src-c5a83288e55153c3ebfdfbb79157ee7804184a4a.tar.bz2
Using thread safe reference counting to wrap the UploadData instance.Moving the post_data_len_ member variable to the PluginUrlRequest class.TEST=This is a tentative fix for bug 25531.BUG=25531
Review URL: http://codereview.chromium.org/340006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30432 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_frame_automation.cc')
-rw-r--r--chrome_frame/chrome_frame_automation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/chrome_frame_automation.cc b/chrome_frame/chrome_frame_automation.cc
index 27461d3..13a7339 100644
--- a/chrome_frame/chrome_frame_automation.cc
+++ b/chrome_frame/chrome_frame_automation.cc
@@ -982,7 +982,7 @@ bool ChromeFrameAutomationClient::AddRequest(PluginUrlRequest* request) {
}
DCHECK(request_map_.end() == request_map_.find(request->id()));
- request_map_[request->id()] = request;
+ request_map_[request->id()] = request;
return true;
}