Merge revision 556 changes:

- Fix race condition in CefCookieManagerImpl constructor (issue #542).

git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1025@558 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-03-29 16:53:16 +00:00
parent 6c669ab484
commit 0d33fc8cd2
2 changed files with 13 additions and 19 deletions

View File

@ -12,11 +12,7 @@
// Implementation of the CefCookieManager interface.
class CefCookieManagerImpl : public CefCookieManager {
public:
// Creates a new reference to the existing global cookie monster.
CefCookieManagerImpl();
// Creates a new cookie monster with storage at the specified |path|.
explicit CefCookieManagerImpl(const CefString& path);
CefCookieManagerImpl(bool is_global);
~CefCookieManagerImpl();