summaryrefslogtreecommitdiffstats
path: root/components/test_runner/web_task.cc
blob: df3cb6993282249d8136522d4b2f5d382c32ad44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/test_runner/web_task.h"

#include <algorithm>

#include "third_party/WebKit/public/web/WebKit.h"

namespace test_runner {

WebTask::WebTask(WebTaskList* list) : task_list_(list) {
  task_list_->RegisterTask(this);
}

WebTask::~WebTask() {
  if (task_list_)
    task_list_->UnregisterTask(this);
}

WebTaskList::WebTaskList() {
}

WebTaskList::~WebTaskList() {
  RevokeAll();
}

void WebTaskList::RegisterTask(WebTask* task) {
  tasks_.push_back(task);
}

void WebTaskList::UnregisterTask(WebTask* task) {
  std::vector<WebTask*>::iterator iter =
      std::find(tasks_.begin(), tasks_.end(), task);
  if (iter != tasks_.end())
    tasks_.erase(iter);
}

void WebTaskList::RevokeAll() {
  while (!tasks_.empty())
    tasks_[0]->cancel();
}

}  // namespace test_runner