// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_COOKIES_TREE_MODEL_H_ #define CHROME_BROWSER_COOKIES_TREE_MODEL_H_ #pragma once // TODO(viettrungluu): This header file #includes far too much and has too much // inline code (which shouldn't be inline). #include #include #include #include "base/memory/ref_counted.h" #include "base/memory/weak_ptr.h" #include "base/observer_list.h" #include "base/string16.h" #include "base/utf_string_conversions.h" #include "chrome/browser/browsing_data_appcache_helper.h" #include "chrome/browser/browsing_data_database_helper.h" #include "chrome/browser/browsing_data_file_system_helper.h" #include "chrome/browser/browsing_data_indexed_db_helper.h" #include "chrome/browser/browsing_data_local_storage_helper.h" #include "chrome/browser/browsing_data_quota_helper.h" #include "chrome/common/content_settings.h" #include "net/base/server_bound_cert_store.h" #include "net/cookies/cookie_monster.h" #include "ui/base/models/tree_node_model.h" class BrowsingDataCookieHelper; class BrowsingDataServerBoundCertHelper; class CookieSettings; class CookiesTreeModel; class CookieTreeAppCacheNode; class CookieTreeAppCachesNode; class CookieTreeCookieNode; class CookieTreeCookiesNode; class CookieTreeDatabaseNode; class CookieTreeDatabasesNode; class CookieTreeFileSystemsNode; class CookieTreeFileSystemNode; class CookieTreeLocalStorageNode; class CookieTreeLocalStoragesNode; class CookieTreeServerBoundCertNode; class CookieTreeServerBoundCertsNode; class CookieTreeQuotaNode; class CookieTreeSessionStorageNode; class CookieTreeSessionStoragesNode; class CookieTreeIndexedDBNode; class CookieTreeIndexedDBsNode; class CookieTreeOriginNode; // CookieTreeNode ------------------------------------------------------------- // The base node type in the Cookies, Databases, and Local Storage options // view, from which all other types are derived. Specialized from TreeNode in // that it has a notion of deleting objects stored in the profile, and being // able to have its children do the same. class CookieTreeNode : public ui::TreeNode { public: // Used to pull out information for the InfoView (the details display below // the tree control.) struct DetailedInfo { // NodeType corresponds to the various CookieTreeNode types. enum NodeType { TYPE_NONE, TYPE_ROOT, // This is used for CookieTreeRootNode nodes. TYPE_ORIGIN, // This is used for CookieTreeOriginNode nodes. TYPE_COOKIES, // This is used for CookieTreeCookiesNode nodes. TYPE_COOKIE, // This is used for CookieTreeCookieNode nodes. TYPE_DATABASES, // This is used for CookieTreeDatabasesNode. TYPE_DATABASE, // This is used for CookieTreeDatabaseNode. TYPE_LOCAL_STORAGES, // This is used for CookieTreeLocalStoragesNode. TYPE_LOCAL_STORAGE, // This is used for CookieTreeLocalStorageNode. TYPE_SESSION_STORAGES, // This is used for CookieTreeSessionStoragesNode. TYPE_SESSION_STORAGE, // This is used for CookieTreeSessionStorageNode. TYPE_APPCACHES, // This is used for CookieTreeAppCachesNode. TYPE_APPCACHE, // This is used for CookieTreeAppCacheNode. TYPE_INDEXED_DBS, // This is used for CookieTreeIndexedDBsNode. TYPE_INDEXED_DB, // This is used for CookieTreeIndexedDBNode. TYPE_FILE_SYSTEMS, // This is used for CookieTreeFileSystemsNode. TYPE_FILE_SYSTEM, // This is used for CookieTreeFileSystemNode. TYPE_QUOTA, // This is used for CookieTreeQuotaNode. TYPE_SERVER_BOUND_CERTS, // Used for CookieTreeServerBoundCertsNode. TYPE_SERVER_BOUND_CERT, // Used for CookieTreeServerBoundCertNode. }; // TODO(viettrungluu): Figure out whether we want to store |origin| as a // |string16| or a (UTF-8) |std::string|, and convert. explicit DetailedInfo(const string16& origin) : origin(origin), node_type(TYPE_NONE), cookie(NULL), database_info(NULL), local_storage_info(NULL), session_storage_info(NULL), appcache_info(NULL), indexed_db_info(NULL), file_system_info(NULL), quota_info(NULL), server_bound_cert(NULL) {} DetailedInfo& Init(NodeType type) { DCHECK_EQ(TYPE_NONE, node_type); node_type = type; return *this; } DetailedInfo& InitCookie( const net::CookieMonster::CanonicalCookie* cookie) { Init(TYPE_COOKIE); this->cookie = cookie; return *this; } DetailedInfo& InitDatabase( const BrowsingDataDatabaseHelper::DatabaseInfo* database_info) { Init(TYPE_DATABASE); this->database_info = database_info; return *this; } DetailedInfo& InitLocalStorage( const BrowsingDataLocalStorageHelper::LocalStorageInfo* local_storage_info) { Init(TYPE_LOCAL_STORAGE); this->local_storage_info = local_storage_info; return *this; } DetailedInfo& InitSessionStorage( const BrowsingDataLocalStorageHelper::LocalStorageInfo* session_storage_info) { Init(TYPE_SESSION_STORAGE); this->session_storage_info = session_storage_info; return *this; } DetailedInfo& InitAppCache(const appcache::AppCacheInfo* appcache_info) { Init(TYPE_APPCACHE); this->appcache_info = appcache_info; return *this; } DetailedInfo& InitIndexedDB( const BrowsingDataIndexedDBHelper::IndexedDBInfo* indexed_db_info) { Init(TYPE_INDEXED_DB); this->indexed_db_info = indexed_db_info; return *this; } DetailedInfo& InitFileSystem( const BrowsingDataFileSystemHelper::FileSystemInfo* file_system_info) { Init(TYPE_FILE_SYSTEM); this->file_system_info = file_system_info; return *this; } DetailedInfo& InitQuota( const BrowsingDataQuotaHelper::QuotaInfo* quota_info) { Init(TYPE_QUOTA); this->quota_info = quota_info; return *this; } DetailedInfo& InitServerBoundCert( const net::ServerBoundCertStore::ServerBoundCert* server_bound_cert) { Init(TYPE_SERVER_BOUND_CERT); this->server_bound_cert = server_bound_cert; return *this; } string16 origin; NodeType node_type; const net::CookieMonster::CanonicalCookie* cookie; const BrowsingDataDatabaseHelper::DatabaseInfo* database_info; const BrowsingDataLocalStorageHelper::LocalStorageInfo* local_storage_info; const BrowsingDataLocalStorageHelper::LocalStorageInfo* session_storage_info; const appcache::AppCacheInfo* appcache_info; const BrowsingDataIndexedDBHelper::IndexedDBInfo* indexed_db_info; const BrowsingDataFileSystemHelper::FileSystemInfo* file_system_info; const BrowsingDataQuotaHelper::QuotaInfo* quota_info; const net::ServerBoundCertStore::ServerBoundCert* server_bound_cert; }; CookieTreeNode() {} explicit CookieTreeNode(const string16& title) : ui::TreeNode(title) {} virtual ~CookieTreeNode() {} // Delete backend storage for this node, and any children nodes. (E.g. delete // the cookie from CookieMonster, clear the database, and so forth.) virtual void DeleteStoredObjects(); // Gets a pointer back to the associated model for the tree we are in. virtual CookiesTreeModel* GetModel() const; // Returns a struct with detailed information used to populate the details // part of the view. virtual DetailedInfo GetDetailedInfo() const = 0; protected: class NodeTitleComparator { public: bool operator() (const CookieTreeNode* lhs, const CookieTreeNode* rhs); }; void AddChildSortedByTitle(CookieTreeNode* new_child); private: DISALLOW_COPY_AND_ASSIGN(CookieTreeNode); }; // CookieTreeRootNode --------------------------------------------------------- // The node at the root of the CookieTree that gets inserted into the view. class CookieTreeRootNode : public CookieTreeNode { public: explicit CookieTreeRootNode(CookiesTreeModel* model); virtual ~CookieTreeRootNode(); CookieTreeOriginNode* GetOrCreateOriginNode(const GURL& url); // CookieTreeNode methods: virtual CookiesTreeModel* GetModel() const OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: CookiesTreeModel* model_; DISALLOW_COPY_AND_ASSIGN(CookieTreeRootNode); }; // CookieTreeOriginNode ------------------------------------------------------- class CookieTreeOriginNode : public CookieTreeNode { public: // Returns the origin node's title to use for a given URL. static std::wstring TitleForUrl(const GURL& url); explicit CookieTreeOriginNode(const GURL& url); virtual ~CookieTreeOriginNode(); // CookieTreeNode methods: virtual DetailedInfo GetDetailedInfo() const OVERRIDE; // CookieTreeOriginNode methods: CookieTreeCookiesNode* GetOrCreateCookiesNode(); CookieTreeDatabasesNode* GetOrCreateDatabasesNode(); CookieTreeLocalStoragesNode* GetOrCreateLocalStoragesNode(); CookieTreeSessionStoragesNode* GetOrCreateSessionStoragesNode(); CookieTreeAppCachesNode* GetOrCreateAppCachesNode(); CookieTreeIndexedDBsNode* GetOrCreateIndexedDBsNode(); CookieTreeFileSystemsNode* GetOrCreateFileSystemsNode(); CookieTreeServerBoundCertsNode* GetOrCreateServerBoundCertsNode(); CookieTreeQuotaNode* UpdateOrCreateQuotaNode( std::list::iterator quota_info); // Creates an content exception for this origin of type // CONTENT_SETTINGS_TYPE_COOKIES. void CreateContentException(CookieSettings* cookie_settings, ContentSetting setting) const; // True if a content exception can be created for this origin. bool CanCreateContentException() const; private: // Pointers to the cookies, databases, local and session storage and appcache // nodes. When we build up the tree we need to quickly get a reference to // the COOKIES node to add children. Checking each child and interrogating // them to see if they are a COOKIES, APPCACHES, DATABASES etc node seems // less preferable than storing an extra pointer per origin. CookieTreeCookiesNode* cookies_child_; CookieTreeDatabasesNode* databases_child_; CookieTreeLocalStoragesNode* local_storages_child_; CookieTreeSessionStoragesNode* session_storages_child_; CookieTreeAppCachesNode* appcaches_child_; CookieTreeIndexedDBsNode* indexed_dbs_child_; CookieTreeFileSystemsNode* file_systems_child_; CookieTreeQuotaNode* quota_child_; CookieTreeServerBoundCertsNode* server_bound_certs_child_; // The URL for which this node was initially created. GURL url_; DISALLOW_COPY_AND_ASSIGN(CookieTreeOriginNode); }; // CookieTreeCookieNode ------------------------------------------------------ class CookieTreeCookieNode : public CookieTreeNode { public: friend class CookieTreeCookiesNode; // The cookie should remain valid at least as long as the // CookieTreeCookieNode is valid. explicit CookieTreeCookieNode( std::list::iterator cookie); virtual ~CookieTreeCookieNode(); // CookieTreeNode methods: virtual void DeleteStoredObjects() OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: // cookie_ is expected to remain valid as long as the CookieTreeCookieNode is // valid. std::list::iterator cookie_; DISALLOW_COPY_AND_ASSIGN(CookieTreeCookieNode); }; class CookieTreeCookiesNode : public CookieTreeNode { public: CookieTreeCookiesNode(); virtual ~CookieTreeCookiesNode(); virtual DetailedInfo GetDetailedInfo() const OVERRIDE; void AddCookieNode(CookieTreeCookieNode* child) { AddChildSortedByTitle(child); } private: DISALLOW_COPY_AND_ASSIGN(CookieTreeCookiesNode); }; // CookieTreeAppCacheNode ----------------------------------------------------- class CookieTreeAppCacheNode : public CookieTreeNode { public: friend class CookieTreeAppCachesNode; // appcache_info should remain valid at least as long as the // CookieTreeAppCacheNode is valid. explicit CookieTreeAppCacheNode( const GURL& origin_url, std::list::iterator appcache_info); virtual ~CookieTreeAppCacheNode(); virtual void DeleteStoredObjects() OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: GURL origin_url_; std::list::iterator appcache_info_; DISALLOW_COPY_AND_ASSIGN(CookieTreeAppCacheNode); }; class CookieTreeAppCachesNode : public CookieTreeNode { public: CookieTreeAppCachesNode(); virtual ~CookieTreeAppCachesNode(); virtual DetailedInfo GetDetailedInfo() const OVERRIDE; void AddAppCacheNode(CookieTreeAppCacheNode* child) { AddChildSortedByTitle(child); } private: DISALLOW_COPY_AND_ASSIGN(CookieTreeAppCachesNode); }; // CookieTreeDatabaseNode ----------------------------------------------------- class CookieTreeDatabaseNode : public CookieTreeNode { public: friend class CookieTreeDatabasesNode; // database_info should remain valid at least as long as the // CookieTreeDatabaseNode is valid. explicit CookieTreeDatabaseNode( std::list::iterator database_info); virtual ~CookieTreeDatabaseNode(); virtual void DeleteStoredObjects() OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: // database_info_ is expected to remain valid as long as the // CookieTreeDatabaseNode is valid. std::list::iterator database_info_; DISALLOW_COPY_AND_ASSIGN(CookieTreeDatabaseNode); }; class CookieTreeDatabasesNode : public CookieTreeNode { public: CookieTreeDatabasesNode(); virtual ~CookieTreeDatabasesNode(); virtual DetailedInfo GetDetailedInfo() const OVERRIDE; void AddDatabaseNode(CookieTreeDatabaseNode* child) { AddChildSortedByTitle(child); } private: DISALLOW_COPY_AND_ASSIGN(CookieTreeDatabasesNode); }; // CookieTreeFileSystemNode -------------------------------------------------- class CookieTreeFileSystemNode : public CookieTreeNode { public: friend class CookieTreeFileSystemsNode; // file_system_info should remain valid at least as long as the // CookieTreeFileSystemNode is valid. explicit CookieTreeFileSystemNode( std::list::iterator file_system_info); virtual ~CookieTreeFileSystemNode(); virtual void DeleteStoredObjects() OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: // file_system_info_ expected to remain valid as long as the // CookieTreeFileSystemNode is valid. std::list::iterator file_system_info_; DISALLOW_COPY_AND_ASSIGN(CookieTreeFileSystemNode); }; class CookieTreeFileSystemsNode : public CookieTreeNode { public: CookieTreeFileSystemsNode(); virtual ~CookieTreeFileSystemsNode(); virtual DetailedInfo GetDetailedInfo() const OVERRIDE; void AddFileSystemNode(CookieTreeFileSystemNode* child) { AddChildSortedByTitle(child); } private: DISALLOW_COPY_AND_ASSIGN(CookieTreeFileSystemsNode); }; // CookieTreeLocalStorageNode ------------------------------------------------- class CookieTreeLocalStorageNode : public CookieTreeNode { public: // local_storage_info should remain valid at least as long as the // CookieTreeLocalStorageNode is valid. explicit CookieTreeLocalStorageNode( std::list::iterator local_storage_info); virtual ~CookieTreeLocalStorageNode(); // CookieTreeNode methods: virtual void DeleteStoredObjects() OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: // local_storage_info_ is expected to remain valid as long as the // CookieTreeLocalStorageNode is valid. std::list::iterator local_storage_info_; DISALLOW_COPY_AND_ASSIGN(CookieTreeLocalStorageNode); }; class CookieTreeLocalStoragesNode : public CookieTreeNode { public: CookieTreeLocalStoragesNode(); virtual ~CookieTreeLocalStoragesNode(); virtual DetailedInfo GetDetailedInfo() const OVERRIDE; void AddLocalStorageNode(CookieTreeLocalStorageNode* child) { AddChildSortedByTitle(child); } private: DISALLOW_COPY_AND_ASSIGN(CookieTreeLocalStoragesNode); }; // CookieTreeSessionStorageNode ----------------------------------------------- class CookieTreeSessionStorageNode : public CookieTreeNode { public: // session_storage_info should remain valid at least as long as the // CookieTreeSessionStorageNode is valid. explicit CookieTreeSessionStorageNode( std::list::iterator session_storage_info); virtual ~CookieTreeSessionStorageNode(); // CookieTreeNode methods: virtual void DeleteStoredObjects() OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: // session_storage_info_ is expected to remain valid as long as the // CookieTreeSessionStorageNode is valid. std::list::iterator session_storage_info_; DISALLOW_COPY_AND_ASSIGN(CookieTreeSessionStorageNode); }; class CookieTreeSessionStoragesNode : public CookieTreeNode { public: CookieTreeSessionStoragesNode(); virtual ~CookieTreeSessionStoragesNode(); virtual DetailedInfo GetDetailedInfo() const OVERRIDE; void AddSessionStorageNode(CookieTreeSessionStorageNode* child) { AddChildSortedByTitle(child); } private: DISALLOW_COPY_AND_ASSIGN(CookieTreeSessionStoragesNode); }; // CookieTreeIndexedDBNode ----------------------------------------------- class CookieTreeIndexedDBNode : public CookieTreeNode { public: // indexed_db_info should remain valid at least as long as the // CookieTreeIndexedDBNode is valid. explicit CookieTreeIndexedDBNode( std::list::iterator indexed_db_info); virtual ~CookieTreeIndexedDBNode(); // CookieTreeNode methods: virtual void DeleteStoredObjects() OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: // indexed_db_info_ is expected to remain valid as long as the // CookieTreeIndexedDBNode is valid. std::list::iterator indexed_db_info_; DISALLOW_COPY_AND_ASSIGN(CookieTreeIndexedDBNode); }; class CookieTreeIndexedDBsNode : public CookieTreeNode { public: CookieTreeIndexedDBsNode(); virtual ~CookieTreeIndexedDBsNode(); virtual DetailedInfo GetDetailedInfo() const OVERRIDE; void AddIndexedDBNode(CookieTreeIndexedDBNode* child) { AddChildSortedByTitle(child); } private: DISALLOW_COPY_AND_ASSIGN(CookieTreeIndexedDBsNode); }; // CookieTreeQuotaNode -------------------------------------------------- class CookieTreeQuotaNode : public CookieTreeNode { public: // quota_info should remain valid at least as long as the CookieTreeQuotaNode // is valid. explicit CookieTreeQuotaNode( std::list::iterator quota_info); virtual ~CookieTreeQuotaNode(); virtual void DeleteStoredObjects() OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: // quota_info_ is expected to remain valid as long as the CookieTreeQuotaNode // is valid. std::list::iterator quota_info_; DISALLOW_COPY_AND_ASSIGN(CookieTreeQuotaNode); }; // CookieTreeServerBoundCertNode --------------------------------------------- class CookieTreeServerBoundCertNode : public CookieTreeNode { public: friend class CookieTreeServerBoundCertsNode; // The iterator should remain valid at least as long as the // CookieTreeServerBoundCertNode is valid. explicit CookieTreeServerBoundCertNode( net::ServerBoundCertStore::ServerBoundCertList::iterator cert); virtual ~CookieTreeServerBoundCertNode(); // CookieTreeNode methods: virtual void DeleteStoredObjects() OVERRIDE; virtual DetailedInfo GetDetailedInfo() const OVERRIDE; private: // server_bound_cert_ is expected to remain valid as long as the // CookieTreeServerBoundCertNode is valid. net::ServerBoundCertStore::ServerBoundCertList::iterator server_bound_cert_; DISALLOW_COPY_AND_ASSIGN(CookieTreeServerBoundCertNode); }; class CookieTreeServerBoundCertsNode : public CookieTreeNode { public: CookieTreeServerBoundCertsNode(); virtual ~CookieTreeServerBoundCertsNode(); virtual DetailedInfo GetDetailedInfo() const OVERRIDE; void AddServerBoundCertNode(CookieTreeServerBoundCertNode* child) { AddChildSortedByTitle(child); } private: DISALLOW_COPY_AND_ASSIGN(CookieTreeServerBoundCertsNode); }; // CookiesTreeModel ----------------------------------------------------------- class CookiesTreeModel : public ui::TreeNodeModel { public: // Because non-cookie nodes are fetched in a background thread, they are not // present at the time the Model is created. The Model then notifies its // observers for every item added from databases, local storage, and // appcache. We extend the Observer interface to add notifications before and // after these batch inserts. class Observer : public ui::TreeModelObserver { public: virtual void TreeModelBeginBatch(CookiesTreeModel* model) {} virtual void TreeModelEndBatch(CookiesTreeModel* model) {} }; CookiesTreeModel( BrowsingDataCookieHelper* cookie_helper, BrowsingDataDatabaseHelper* database_helper, BrowsingDataLocalStorageHelper* local_storage_helper, BrowsingDataLocalStorageHelper* session_storage_helper, BrowsingDataAppCacheHelper* appcache_helper, BrowsingDataIndexedDBHelper* indexed_db_helper, BrowsingDataFileSystemHelper* file_system_helper, BrowsingDataQuotaHelper* quota_helper, BrowsingDataServerBoundCertHelper* server_bound_cert_helper, bool use_cookie_source); virtual ~CookiesTreeModel(); // ui::TreeModel methods: // Returns the set of icons for the nodes in the tree. You only need override // this if you don't want to use the default folder icons. virtual void GetIcons(std::vector* icons) OVERRIDE; // Returns the index of the icon to use for |node|. Return -1 to use the // default icon. The index is relative to the list of icons returned from // GetIcons. virtual int GetIconIndex(ui::TreeModelNode* node) OVERRIDE; // CookiesTreeModel methods: void DeleteAllStoredObjects(); void DeleteCookieNode(CookieTreeNode* cookie_node); // Filter the origins to only display matched results. void UpdateSearchResults(const std::wstring& filter); // Manages CookiesTreeModel::Observers. This will also call // TreeNodeModel::AddObserver so that it gets all the proper notifications. // Note that the converse is not true: simply adding a TreeModelObserver will // not get CookiesTreeModel::Observer notifications. virtual void AddCookiesTreeObserver(Observer* observer); virtual void RemoveCookiesTreeObserver(Observer* observer); private: enum CookieIconIndex { ORIGIN = 0, COOKIE = 1, DATABASE = 2 }; typedef std::list CookieList; typedef std::list DatabaseInfoList; typedef std::list LocalStorageInfoList; typedef std::list SessionStorageInfoList; typedef std::list IndexedDBInfoList; typedef std::list FileSystemInfoList; typedef std::list QuotaInfoArray; typedef net::ServerBoundCertStore::ServerBoundCertList ServerBoundCertList; void OnAppCacheModelInfoLoaded(); void OnCookiesModelInfoLoaded(const net::CookieList& cookie_list); void OnDatabaseModelInfoLoaded(const DatabaseInfoList& database_info); void OnLocalStorageModelInfoLoaded( const LocalStorageInfoList& local_storage_info); void OnSessionStorageModelInfoLoaded( const LocalStorageInfoList& local_storage_info); void OnIndexedDBModelInfoLoaded( const IndexedDBInfoList& indexed_db_info); void OnFileSystemModelInfoLoaded( const FileSystemInfoList& file_system_info); void OnQuotaModelInfoLoaded(const QuotaInfoArray& quota_info); void OnServerBoundCertModelInfoLoaded(const ServerBoundCertList& cert_list); void PopulateAppCacheInfoWithFilter(const std::wstring& filter); void PopulateCookieInfoWithFilter(const std::wstring& filter); void PopulateDatabaseInfoWithFilter(const std::wstring& filter); void PopulateLocalStorageInfoWithFilter(const std::wstring& filter); void PopulateSessionStorageInfoWithFilter(const std::wstring& filter); void PopulateIndexedDBInfoWithFilter(const std::wstring& filter); void PopulateFileSystemInfoWithFilter(const std::wstring& filter); void PopulateQuotaInfoWithFilter(const std::wstring& filter); void PopulateServerBoundCertInfoWithFilter(const std::wstring& filter); void NotifyObserverBeginBatch(); void NotifyObserverEndBatch(); scoped_refptr appcache_helper_; scoped_refptr cookie_helper_; scoped_refptr database_helper_; scoped_refptr local_storage_helper_; scoped_refptr session_storage_helper_; scoped_refptr indexed_db_helper_; scoped_refptr file_system_helper_; scoped_refptr quota_helper_; scoped_refptr server_bound_cert_helper_; std::map > appcache_info_; CookieList cookie_list_; DatabaseInfoList database_info_list_; LocalStorageInfoList local_storage_info_list_; LocalStorageInfoList session_storage_info_list_; IndexedDBInfoList indexed_db_info_list_; FileSystemInfoList file_system_info_list_; QuotaInfoArray quota_info_list_; ServerBoundCertList server_bound_cert_list_; // The CookiesTreeModel maintains a separate list of observers that are // specifically of the type CookiesTreeModel::Observer. ObserverList cookies_observer_list_; // If this is non-zero, then this model is batching updates (there's a lot of // notifications coming down the pipe). This is an integer is used to balance // calls to Begin/EndBatch() if they're called in a nested manner. int batch_update_; // If true, use the CanonicalCookie::Source attribute to group cookies. // Otherwise, use the CanonicalCookie::Domain attribute. bool use_cookie_source_; base::WeakPtrFactory weak_ptr_factory_; friend class CookieTreeAppCacheNode; friend class CookieTreeCookieNode; friend class CookieTreeDatabaseNode; friend class CookieTreeLocalStorageNode; friend class CookieTreeSessionStorageNode; friend class CookieTreeIndexedDBNode; friend class CookieTreeFileSystemNode; friend class CookieTreeQuotaNode; friend class CookieTreeServerBoundCertNode; DISALLOW_COPY_AND_ASSIGN(CookiesTreeModel); }; #endif // CHROME_BROWSER_COOKIES_TREE_MODEL_H_