HomeSort by relevance Sort by last modified time
    Searched refs:clear_all_first (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/content/browser/dom_storage/
dom_storage_database_adapter.h 22 bool clear_all_first, const DOMStorageValuesMap& changes) = 0;
session_storage_database_adapter.cc 27 bool clear_all_first, const DOMStorageValuesMap& changes) {
29 clear_all_first, changes);
local_storage_database_adapter.cc 24 bool clear_all_first, const DOMStorageValuesMap& changes) {
25 return db_->CommitChanges(clear_all_first, changes);
session_storage_database_adapter.h 23 virtual bool CommitChanges(bool clear_all_first,
local_storage_database_adapter.h 27 virtual bool CommitChanges(bool clear_all_first,
dom_storage_database.h 38 // the database if |clear_all_first| is set. Then all entries in
41 bool CommitChanges(bool clear_all_first, const DOMStorageValuesMap& changes);
dom_storage_area.cc 31 : clear_all_first(false) {
174 commit_batch->clear_all_first = true;
196 commit_batch->clear_all_first = true;
364 backing_->CommitChanges(commit_batch->clear_all_first,
395 commit_batch_->clear_all_first,
dom_storage_database.cc 73 bool DOMStorageDatabase::CommitChanges(bool clear_all_first,
78 return clear_all_first && changes.empty() &&
87 if (clear_all_first) {
dom_storage_area.h 99 bool clear_all_first; member in struct:content::DOMStorageArea::CommitBatch
session_storage_database.h 50 // before updating the database if |clear_all_first| is set. Then all entries
57 bool clear_all_first,
dom_storage_area_unittest.cc 230 EXPECT_FALSE(area->commit_batch_->clear_all_first);
234 EXPECT_FALSE(area->commit_batch_->clear_all_first);
250 EXPECT_TRUE(area->commit_batch_->clear_all_first);
session_storage_database.cc 133 bool clear_all_first,
158 if (!DeepCopyArea(namespace_id, origin, !clear_all_first,
162 else if (clear_all_first) {

Completed in 450 milliseconds