HomeSort by relevance Sort by last modified time
    Searched defs:remove_app_ids (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/apps/
ephemeral_app_service_unittest.cc 45 std::set<std::string> remove_app_ids; local
48 &remove_app_ids);
49 EXPECT_EQ(expected_removed_ids, remove_app_ids);
55 std::set<std::string> remove_app_ids; local
58 &remove_app_ids);
59 EXPECT_EQ(expected_removed_count, (int) remove_app_ids.size());
65 if (remove_app_ids.find(it->second) != remove_app_ids.end()) {
ephemeral_app_service.cc 163 std::set<std::string> remove_app_ids; local
194 GetAppsToRemove(app_count, app_launch_times, &remove_app_ids);
195 for (std::set<std::string>::const_iterator id = remove_app_ids.begin();
196 id != remove_app_ids.end(); ++id) {
209 std::set<std::string>* remove_app_ids) {
227 remove_app_ids->insert(it->second);

Completed in 87 milliseconds