Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Unified Diff: ceee/ie/plugin/bho/cookie_accountant.h

Issue 5290011: Add a lock to the cookie accountant to prevent race conditions in patching... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ceee/ie/plugin/bho/cookie_accountant.cc » ('j') | ceee/ie/plugin/bho/cookie_accountant.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/plugin/bho/cookie_accountant.h
===================================================================
--- ceee/ie/plugin/bho/cookie_accountant.h (revision 67716)
+++ ceee/ie/plugin/bho/cookie_accountant.h (working copy)
@@ -13,6 +13,7 @@
#include <string>
#include "app/win/iat_patch_function.h"
+#include "base/lock.h"
#include "base/singleton.h"
#include "base/time.h"
#include "ceee/ie/plugin/bho/cookie_events_funnel.h"
@@ -67,9 +68,13 @@
}
// Function patches that allow us to intercept scripted cookie changes.
+ // Protected by CookieAccountant::lock_.
app::win::IATPatchFunction internet_set_cookie_ex_a_patch_;
app::win::IATPatchFunction internet_set_cookie_ex_w_patch_;
+ // A lock that protects access to the function patches.
+ Lock lock_;
+
// Cached singleton instance. Useful for unit testing.
static CookieAccountant* singleton_instance_;
« no previous file with comments | « no previous file | ceee/ie/plugin/bho/cookie_accountant.cc » ('j') | ceee/ie/plugin/bho/cookie_accountant.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698