Chromium Code Reviews| Index: content/browser/net/cookie_store_map.h |
| diff --git a/content/browser/net/cookie_store_map.h b/content/browser/net/cookie_store_map.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..306810f8414a3a147ab87a9bcf47cdda27a887d1 |
| --- /dev/null |
| +++ b/content/browser/net/cookie_store_map.h |
| @@ -0,0 +1,62 @@ |
| +// Copyright (c) 2013 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 CONTENT_BROWSER_NET_COOKIE_STORE_MAP_H_ |
| +#define CONTENT_BROWSER_NET_COOKIE_STORE_MAP_H_ |
| + |
| +#include <map> |
| +#include <string> |
| + |
| +#include "base/callback_forward.h" |
| +#include "base/compiler_specific.h" |
| +#include "base/memory/ref_counted.h" |
| +#include "base/time/time.h" |
| +#include "content/common/content_export.h" |
| + |
| +class GURL; |
| + |
| +namespace net { |
| +class CookieStore; |
| +} // namespace net |
| + |
| +namespace content { |
| + |
| +// CookieStoreMap allows associating of different CookieStore objects with |
|
Charlie Reis
2013/08/17 00:17:22
nit: Drop "of"
awong
2013/08/17 00:32:52
Done.
|
| +// different schemes. It is mainly a convenience class. |
| +class CookieStoreMap { |
| + public: |
| + CookieStoreMap(); |
| + virtual ~CookieStoreMap(); |
| + |
| + // Returns the CookieStore associated with |scheme|. |
| + CONTENT_EXPORT net::CookieStore* GetForScheme( |
| + const std::string& scheme) const; |
| + |
| + // Associates a |cookie_store| with the given |scheme|. Should only be called |
| + // once for any given |scheme|. |cookie_store| must be non-NULL. The |
| + // CookieStoreMap will retain the |cookie_store| object. |
| + void SetForScheme(const std::string& scheme, net::CookieStore* cookie_store); |
| + |
| + // Clears cookies matching the specified parameters from all CookieStores |
| + // contained in this map. Calls |done| when all CookieStores have been |
| + // cleared. |done| is guaranteed to be run on the calling thread. |
| + void DeleteCookies(const GURL& origin, |
| + const base::Time begin, |
| + const base::Time end, |
| + const base::Closure& done); |
| + |
| + // Makes a clone of the map. Useful if the map needs to be copied to another |
|
Charlie Reis
2013/08/17 00:17:22
Maybe mention that all SetForScheme calls should h
awong
2013/08/17 00:32:52
I'd rather leave this one out. It seems implicit t
|
| + // thread. |
| + CookieStoreMap* Clone() const; |
| + |
| + private: |
| + typedef std::map<std::string, scoped_refptr<net::CookieStore> > MapType; |
| + MapType scheme_map_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(CookieStoreMap); |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_NET_COOKIE_STORE_MAP_H_ |