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

Unified Diff: chrome/browser/browsing_data_cookie_helper.h

Issue 10092013: Display third party cookies and site data counts in the WebsiteSettings UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "Fix CannedBrowsingDataDatabaseHelperTest.*" Created 8 years, 7 months 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 | « chrome/browser/browsing_data_appcache_helper.cc ('k') | chrome/browser/browsing_data_cookie_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browsing_data_cookie_helper.h
diff --git a/chrome/browser/browsing_data_cookie_helper.h b/chrome/browser/browsing_data_cookie_helper.h
index 56ea7e208fbf2a41753723b34232e9f7f9ad31d2..9224e042c8c9f5ffd2a546a12995f8e52cd3b0e8 100644
--- a/chrome/browser/browsing_data_cookie_helper.h
+++ b/chrome/browser/browsing_data_cookie_helper.h
@@ -6,6 +6,7 @@
#define CHROME_BROWSER_BROWSING_DATA_COOKIE_HELPER_H_
#pragma once
+#include <map>
#include <string>
#include "base/basictypes.h"
@@ -80,6 +81,8 @@ class BrowsingDataCookieHelper
// as a parameter during construction.
class CannedBrowsingDataCookieHelper : public BrowsingDataCookieHelper {
public:
+ typedef std::map<GURL, net::CookieList*> OriginCookieListMap;
+
explicit CannedBrowsingDataCookieHelper(Profile* profile);
// Return a copy of the cookie helper. Only one consumer can use the
@@ -89,12 +92,14 @@ class CannedBrowsingDataCookieHelper : public BrowsingDataCookieHelper {
// Adds cookies and delete the current cookies with the same Name, Domain,
// and Path as the newly created ones.
- void AddReadCookies(const GURL& url,
+ void AddReadCookies(const GURL& frame_url,
+ const GURL& request_url,
const net::CookieList& cookie_list);
// Adds cookies that will be stored by the CookieMonster. Designed to mirror
// the logic of SetCookieWithOptions.
- void AddChangedCookie(const GURL& url,
+ void AddChangedCookie(const GURL& frame_url,
+ const GURL& request_url,
const std::string& cookie_line,
const net::CookieOptions& options);
@@ -108,19 +113,34 @@ class CannedBrowsingDataCookieHelper : public BrowsingDataCookieHelper {
virtual void StartFetching(
const net::CookieMonster::GetCookieListCallback& callback) OVERRIDE;
- // Returns the currently stored number of cookies.
+ // Returns the number of stored cookies.
size_t GetCookieCount() const;
+ // Returns the map that contains the cookie lists for all frame urls.
+ const OriginCookieListMap& origin_cookie_list_map() {
+ return origin_cookie_list_map_;
+ }
+
private:
// Check if the cookie list contains a cookie with the same name,
// domain, and path as the newly created cookie. Delete the old cookie
// if does.
- bool DeleteMetchingCookie(
- const net::CookieMonster::CanonicalCookie& add_cookie);
+ bool DeleteMatchingCookie(
+ const net::CookieMonster::CanonicalCookie& add_cookie,
+ net::CookieList* cookie_list);
virtual ~CannedBrowsingDataCookieHelper();
- net::CookieList cookie_list_;
+ // Returns the |CookieList| for the given |origin|.
+ net::CookieList* GetCookiesFor(const GURL& origin);
+
+ // Adds the |cookie| to the cookie list for the given |frame_url|.
+ void AddCookie(
+ const GURL& frame_url,
+ const net::CookieMonster::CanonicalCookie& cookie);
+
+ // Map that contains the cookie lists for all frame origins.
+ OriginCookieListMap origin_cookie_list_map_;
DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataCookieHelper);
};
« no previous file with comments | « chrome/browser/browsing_data_appcache_helper.cc ('k') | chrome/browser/browsing_data_cookie_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698