Implement persistent localStorage with the new DOM storage backend (issue #603).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@704 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-06-22 14:56:07 +00:00
parent 1f42df1b61
commit a6aded4716
4 changed files with 48 additions and 2 deletions

View File

@ -11,6 +11,7 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/sequenced_worker_pool.h"
#include "net/base/network_change_notifier.h"
class BrowserWebKitInit;
@ -53,6 +54,8 @@ class CefProcessUIThread
scoped_ptr<net::NetworkChangeNotifier> network_change_notifier_;
scoped_refptr<base::SequencedWorkerPool> blocking_pool_;
DISALLOW_COPY_AND_ASSIGN(CefProcessUIThread);
};