diff options
author | stoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-20 16:26:20 +0000 |
---|---|---|
committer | stoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-20 16:26:20 +0000 |
commit | 402cfefb2da2e34d41f6ec5b84cf3b4dbfbfc9c7 (patch) | |
tree | a6176b80dd2839686e89f5e589a3d24886f17227 /chrome_frame/urlmon_url_request.h | |
parent | 0a163e8a168750c9f314267bbad4514139fecce4 (diff) | |
download | chromium_src-402cfefb2da2e34d41f6ec5b84cf3b4dbfbfc9c7.zip chromium_src-402cfefb2da2e34d41f6ec5b84cf3b4dbfbfc9c7.tar.gz chromium_src-402cfefb2da2e34d41f6ec5b84cf3b4dbfbfc9c7.tar.bz2 |
Handle cookie requests in BackgroundThread.
Enable the unload event test.
BUG=40814
TEST=unload event test
Review URL: http://codereview.chromium.org/1629027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45042 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/urlmon_url_request.h')
-rw-r--r-- | chrome_frame/urlmon_url_request.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome_frame/urlmon_url_request.h b/chrome_frame/urlmon_url_request.h index 5dbb417..9ace8dc 100644 --- a/chrome_frame/urlmon_url_request.h +++ b/chrome_frame/urlmon_url_request.h @@ -52,6 +52,7 @@ class UrlmonUrlRequestManager // Returns a copy of the url privacy information for this instance. PrivacyInfo privacy_info() { + AutoLock lock(privacy_info_lock_); return privacy_info_; } @@ -109,6 +110,7 @@ class UrlmonUrlRequestManager bool stopping_; int calling_delegate_; // re-entrancy protection (debug only check) + Lock privacy_info_lock_; PrivacyInfo privacy_info_; // The window to be used to fire notifications on. HWND notification_window_; |