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

  /external/chromium_org/chrome/installer/util/
delete_after_reboot_helper_unittest.cc 148 std::vector<PendingMove> pending_moves; local
149 EXPECT_TRUE(SUCCEEDED(GetPendingMovesValue(&pending_moves)));
153 EXPECT_GT(pending_moves.size(), 3U);
159 std::vector<PendingMove>::const_iterator iter(pending_moves.begin());
160 for (; iter != pending_moves.end(); iter++) {
170 EXPECT_FALSE(iter == pending_moves.end());
171 if (iter != pending_moves.end()) {
181 HRESULT hr = GetPendingMovesValue(&pending_moves);
184 std::vector<PendingMove>::const_iterator check_iter(pending_moves.begin());
185 for (; check_iter != pending_moves.end(); ++check_iter)
202 std::vector<PendingMove> pending_moves; local
    [all...]
delete_after_reboot_helper.cc 266 HRESULT GetPendingMovesValue(std::vector<PendingMove>* pending_moves) {
267 DCHECK(pending_moves);
268 pending_moves->clear();
322 pending_moves);
347 std::vector<PendingMove> pending_moves;
348 HRESULT hr = GetPendingMovesValue(&pending_moves);
362 for (std::vector<PendingMove>::const_iterator iter(pending_moves.begin());
363 iter != pending_moves.end(); ++iter) {
372 if (strings_to_keep.size() == pending_moves.size()) {
delete_after_reboot_helper.h 40 HRESULT GetPendingMovesValue(std::vector<PendingMove>* pending_moves);

Completed in 57 milliseconds