Home
last modified time | relevance | path

Searched refs:remove_app_ids (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/chrome/browser/apps/
Dephemeral_app_service_unittest.cc45 std::set<std::string> remove_app_ids; in RunTest() local
48 &remove_app_ids); in RunTest()
49 EXPECT_EQ(expected_removed_ids, remove_app_ids); in RunTest()
55 std::set<std::string> remove_app_ids; in RunTestCheckLRU() local
58 &remove_app_ids); in RunTestCheckLRU()
59 EXPECT_EQ(expected_removed_count, (int) remove_app_ids.size()); in RunTestCheckLRU()
65 if (remove_app_ids.find(it->second) != remove_app_ids.end()) { in RunTestCheckLRU()
Dephemeral_app_service.cc312 std::set<std::string> remove_app_ids; in GarbageCollectApps() local
343 GetAppsToRemove(app_count, app_launch_times, &remove_app_ids); in GarbageCollectApps()
345 for (std::set<std::string>::const_iterator id = remove_app_ids.begin(); in GarbageCollectApps()
346 id != remove_app_ids.end(); ++id) { in GarbageCollectApps()
364 std::set<std::string>* remove_app_ids) { in GetAppsToRemove() argument
382 remove_app_ids->insert(it->second); in GetAppsToRemove()
Dephemeral_app_service.h97 std::set<std::string>* remove_app_ids);