Hey,
during the past few days, I came across two instances of new code using cookies that was not correctly hooked up to the cookie APIs.
In one instance, the CookieStore was taken from the URLRequestContext to retrieve cookies (the correct way would be to get the CookieMonster and ask the NetworkDelegate for permission first):
http://codereview.chromium.org/10449017/
In the second instance, the cookie was retrieved from the CookieJar (which is hooked up to all the required permission logic - from the renderer you can hardly work around this anyway), but an incorrect first-party URL was provided (you should always pass in frame->document().firstPartyForCookies() for resources that are requested for a given frame):
https://chromiumcodereview.appspot.com/10413015/
When reviewing new code that touches cookies or other site data, please review it carefully that it does the right thing[tm], or forward the review in question to someone from the owp-storage or privacy team.
thanks
-jochen