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

  /external/chromium_org/chrome/browser/extensions/api/declarative/
test_rules_registry.cc 17 NULL /*ui_part*/) {}
23 scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part)
28 ui_part) {}
rules_registry_with_cache_unittest.cc 214 scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI> ui_part; local
216 &profile, "testEvent", content::BrowserThread::UI, &ui_part));
220 EXPECT_TRUE(ui_part->GetDeclarativeRulesStored(extension_id));
226 EXPECT_FALSE(ui_part->GetDeclarativeRulesStored(extension_id));
232 EXPECT_TRUE(ui_part->GetDeclarativeRulesStored(extension_id));
239 ui_part->WriteToStorage(extension_id, value.PassAs<base::Value>());
240 EXPECT_TRUE(ui_part->GetDeclarativeRulesStored(extension_id));
246 ui_part->WriteToStorage(extension_id, value.PassAs<base::Value>());
247 EXPECT_FALSE(ui_part->GetDeclarativeRulesStored(extension_id));
254 ui_part->WriteToStorage(extension_id, value.PassAs<base::Value>())
    [all...]
rules_registry_service.cc 48 scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI> ui_part; local
50 new WebRequestRulesRegistry(profile_, &ui_part));
51 ui_parts_of_registries_.push_back(ui_part.release());
61 new ContentRulesRegistry(profile_, &ui_part));
62 ui_parts_of_registries_.push_back(ui_part.release());
test_rules_registry.h 21 scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part);
rules_registry_with_cache.h 125 // the UI thread) is created, a pointer to it is passed to |*ui_part|.
128 // In tests, |profile| and |ui_part| can be NULL (at the same time). In that
135 scoped_ptr<RuleStorageOnUI>* ui_part);
rules_registry_with_cache.cc 82 scoped_ptr<RuleStorageOnUI>* ui_part)
98 CHECK(!ui_part);
102 ui_part->reset(storage_on_ui_.get());
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
content_rules_registry.h 65 // For testing, |ui_part| can be NULL. In that case it constructs the
69 scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part);
content_rules_registry.cc 25 scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part)
26 : RulesRegistryWithCache((ui_part ? profile : NULL),
30 ui_part),
  /external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
webrequest_rules_registry.h 76 // For testing, |ui_part| can be NULL. In that case it constructs the
80 scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part);
webrequest_rules_registry.cc 39 scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part)
40 : RulesRegistryWithCache((ui_part ? profile : NULL),
44 ui_part),

Completed in 144 milliseconds