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

Unified Diff: webkit/dom_storage/dom_storage_context.cc

Issue 9695013: DOMStorageContextImpl that's implemented in terms of the new dom_storage classes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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: webkit/dom_storage/dom_storage_context.cc
===================================================================
--- webkit/dom_storage/dom_storage_context.cc (revision 127221)
+++ webkit/dom_storage/dom_storage_context.cc (working copy)
@@ -19,7 +19,8 @@
quota::SpecialStoragePolicy* special_storage_policy,
DomStorageTaskRunner* task_runner)
: directory_(directory),
- task_runner_(task_runner) {
+ task_runner_(task_runner),
+ special_storage_policy_(special_storage_policy) {
// AtomicSequenceNum starts at 0 but we want to start session
// namespace ids at one since zero is reserved for the
// kLocalStorageNamespaceId.
@@ -44,6 +45,21 @@
return found->second;
}
+void DomStorageContext::GetUsageInfo(std::vector<UsageInfo>* info) {
+}
+
+void DomStorageContext::DeleteOrigin(const GURL& origin) {
+}
+
+void DomStorageContext::DeleteDataModifiedSince(const base::Time& cutoff) {
+}
+
+void DomStorageContext::PurgeMemory() {
+}
+
+void DomStorageContext::Shutdown() {
+}
+
void DomStorageContext::AddEventObserver(EventObserver* observer) {
event_observers_.AddObserver(observer);
}
« content/browser/browser_context.cc ('K') | « webkit/dom_storage/dom_storage_context.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698