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

Unified Diff: chrome/browser/local_data_container.h

Issue 10785017: Move CanonicalCookie into separate files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing include Created 8 years, 5 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
Index: chrome/browser/local_data_container.h
diff --git a/chrome/browser/local_data_container.h b/chrome/browser/local_data_container.h
index b595b2294f3b223f7fa50f9922c1a28a401e901d..6e71190c8139115427b85b1fe8033005d9a168e1 100644
--- a/chrome/browser/local_data_container.h
+++ b/chrome/browser/local_data_container.h
@@ -17,16 +17,19 @@
#include "chrome/browser/browsing_data_quota_helper.h"
#include "chrome/browser/browsing_data_server_bound_cert_helper.h"
#include "net/base/server_bound_cert_store.h"
-#include "net/cookies/cookie_monster.h"
class LocalDataContainer;
class CookiesTreeModel;
+namespace net {
+class CanonicalCookie;
+}
+
// Friendly typedefs for the multiple types of lists used in the model.
namespace {
typedef std::map<std::string, LocalDataContainer*> ContainerMap;
-typedef std::list<net::CookieMonster::CanonicalCookie> CookieList;
+typedef std::list<net::CanonicalCookie> CookieList;
typedef std::list<BrowsingDataDatabaseHelper::DatabaseInfo> DatabaseInfoList;
typedef std::list<BrowsingDataLocalStorageHelper::LocalStorageInfo>
LocalStorageInfoList;

Powered by Google App Engine
This is Rietveld 408576698