Searched refs:origin_matcher (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/content/browser/ |
D | storage_partition_impl.cc | 112 const StoragePartition::OriginMatcherFunction& origin_matcher, in OnLocalStorageUsageInfo() argument 120 if (!origin_matcher.is_null() && in OnLocalStorageUsageInfo() 121 !origin_matcher.Run(infos[i].origin, special_storage_policy.get())) { in OnLocalStorageUsageInfo() 136 const StoragePartition::OriginMatcherFunction& origin_matcher, in OnSessionStorageUsageInfo() argument 142 if (!origin_matcher.is_null() && in OnSessionStorageUsageInfo() 143 !origin_matcher.Run(infos[i].origin, special_storage_policy.get())) { in OnSessionStorageUsageInfo() 155 const StoragePartition::OriginMatcherFunction& origin_matcher, in ClearLocalStorageOnUIThread() argument 163 bool can_delete = origin_matcher.is_null() || in ClearLocalStorageOnUIThread() 164 origin_matcher.Run(remove_origin, in ClearLocalStorageOnUIThread() 175 dom_storage_context, special_storage_policy, origin_matcher, in ClearLocalStorageOnUIThread() [all …]
|
D | storage_partition_impl.h | 54 const OriginMatcherFunction& origin_matcher, 125 const OriginMatcherFunction& origin_matcher,
|
D | storage_partition_impl_unittest.cc | 285 const StoragePartition::OriginMatcherFunction& origin_matcher, in ClearQuotaDataWithOriginMatcher() argument 290 &remove_origin, origin_matcher, delete_begin, in ClearQuotaDataWithOriginMatcher() 332 const StoragePartition::OriginMatcherFunction& origin_matcher, in ClearStuff() argument 336 NULL, origin_matcher, delete_begin, delete_end, cb); in ClearStuff()
|
/external/chromium_org/chrome/browser/browsing_data/ |
D | browsing_data_remover_unittest.cc | 152 StoragePartition::OriginMatcherFunction origin_matcher; member 199 const OriginMatcherFunction& origin_matcher, in ClearData() argument 211 storage_partition_removal_data_.origin_matcher = origin_matcher; in ClearData() 866 EXPECT_FALSE(removal_data.origin_matcher.Run(kOrigin1, mock_policy)); in TEST_F() 867 EXPECT_TRUE(removal_data.origin_matcher.Run(kOrigin2, mock_policy)); in TEST_F() 868 EXPECT_TRUE(removal_data.origin_matcher.Run(kOrigin3, mock_policy)); in TEST_F() 869 EXPECT_FALSE(removal_data.origin_matcher.Run(kOriginExt, mock_policy)); in TEST_F() 900 EXPECT_TRUE(removal_data.origin_matcher.Run(kOrigin1, mock_policy)); in TEST_F() 901 EXPECT_TRUE(removal_data.origin_matcher.Run(kOrigin2, mock_policy)); in TEST_F() 902 EXPECT_TRUE(removal_data.origin_matcher.Run(kOrigin3, mock_policy)); in TEST_F() [all …]
|
/external/chromium_org/content/public/browser/ |
D | storage_partition.h | 117 const OriginMatcherFunction& origin_matcher,
|