diff options
Diffstat (limited to 'jingle/notifier/base/mock_task.cc')
-rw-r--r-- | jingle/notifier/base/mock_task.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/jingle/notifier/base/mock_task.cc b/jingle/notifier/base/mock_task.cc new file mode 100644 index 0000000..0c398cd --- /dev/null +++ b/jingle/notifier/base/mock_task.cc @@ -0,0 +1,13 @@ +// Copyright (c) 2011 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 "jingle/notifier/base/mock_task.h" + +namespace notifier { + +MockTask::MockTask(TaskParent* parent) : talk_base::Task(parent) {} + +MockTask::~MockTask() {} + +} // namespace notifier |