blob: 71d937b4873b7560edb5df2fc587a735f90f840a [file] [log] [blame]
mukesh agrawalae30e9e2013-05-28 14:09:16 -07001// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "shill/mock_external_task.h"
6
7namespace shill {
8
9MockExternalTask::MockExternalTask(
Paul Stewart1e006c62015-06-16 12:29:06 -070010 ControlInterface* control,
11 GLib* glib,
12 const base::WeakPtr<RPCTaskDelegate>& task_delegate,
13 const base::Callback<void(pid_t, int)>& death_callback)
mukesh agrawalae30e9e2013-05-28 14:09:16 -070014 : ExternalTask(control, glib, task_delegate, death_callback) {}
15
16MockExternalTask::~MockExternalTask() {
17 OnDelete();
18}
19
20} // namespace shill