| Index: webkit/glue/worker_task_runner.cc
|
| diff --git a/webkit/glue/worker_task_runner.cc b/webkit/glue/worker_task_runner.cc
|
| index cfd729b42be22946a9683fc46a0d06f7243eee4e..0aa051d121eabf7c53f7db4808f322d96898450e 100644
|
| --- a/webkit/glue/worker_task_runner.cc
|
| +++ b/webkit/glue/worker_task_runner.cc
|
| @@ -15,7 +15,7 @@ namespace {
|
|
|
| class RunClosureTask : public WebWorkerRunLoop::Task {
|
| public:
|
| - RunClosureTask(const base::Closure& task) : task_(task) {}
|
| + explicit RunClosureTask(const base::Closure& task) : task_(task) {}
|
| virtual ~RunClosureTask() {}
|
| virtual void Run() {
|
| task_.Run();
|
|
|