Home
last modified time | relevance | path

Searched refs:CommitBatch (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/content/browser/dom_storage/
Ddom_storage_area.h98 struct CommitBatch { struct
101 CommitBatch(); argument
102 ~CommitBatch();
115 CommitBatch* CreateCommitBatchIfNeeded();
117 void CommitChanges(const CommitBatch* commit_batch);
132 scoped_ptr<CommitBatch> commit_batch_;
Ddom_storage_area.cc30 DOMStorageArea::CommitBatch::CommitBatch() in CommitBatch() function in content::DOMStorageArea::CommitBatch
33 DOMStorageArea::CommitBatch::~CommitBatch() {} in ~CommitBatch()
141 CommitBatch* commit_batch = CreateCommitBatchIfNeeded(); in SetItem()
156 CommitBatch* commit_batch = CreateCommitBatchIfNeeded(); in RemoveItem()
173 CommitBatch* commit_batch = CreateCommitBatchIfNeeded(); in Clear()
195 CommitBatch* commit_batch = CreateCommitBatchIfNeeded(); in FastClear()
320 DOMStorageArea::CommitBatch* DOMStorageArea::CreateCommitBatchIfNeeded() { in CreateCommitBatchIfNeeded()
323 commit_batch_.reset(new CommitBatch()); in CreateCommitBatchIfNeeded()
361 void DOMStorageArea::CommitChanges(const CommitBatch* commit_batch) { in CommitChanges()