Searched defs:installed_ids (Results 1 - 2 of 2) sorted by relevance

/external/chromium/chrome/browser/extensions/
H A Dapps_promo_unittest.cc84 ExtensionIdSet installed_ids; local
87 EXPECT_FALSE(apps_promo()->ShouldShowAppLauncher(installed_ids));
88 EXPECT_FALSE(apps_promo()->ShouldShowPromo(installed_ids,
97 EXPECT_TRUE(apps_promo()->ShouldShowAppLauncher(installed_ids));
98 EXPECT_TRUE(apps_promo()->ShouldShowPromo(installed_ids,
104 installed_ids.insert(*(default_app_ids.begin()));
106 EXPECT_TRUE(apps_promo()->ShouldShowAppLauncher(installed_ids));
107 EXPECT_FALSE(apps_promo()->ShouldShowPromo(installed_ids,
113 installed_ids = default_app_ids;
115 EXPECT_TRUE(apps_promo()->ShouldShowAppLauncher(installed_ids));
156 ExtensionIdSet installed_ids; local
[all...]
H A Dapps_promo.cc113 bool AppsPromo::ShouldShowPromo(const ExtensionIdSet& installed_ids, argument
133 if (old_default_app_ids_ != installed_ids) {
152 } else if (installed_ids.empty()) {
159 bool AppsPromo::ShouldShowAppLauncher(const ExtensionIdSet& installed_ids) { argument
167 if (!installed_ids.empty())

Completed in 110 milliseconds