blob: a83aa0c8e0b68b636cad19b6e0a4ac5d99a3c565 [file] [log] [blame]
Thieu Le43ce4d42013-10-04 16:08:55 -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_out_of_credits_detector.h"
6
7#include <gmock/gmock.h>
8
9namespace shill {
10
11MockOutOfCreditsDetector::MockOutOfCreditsDetector(
12 EventDispatcher *dispatcher,
13 Manager *manager,
14 Metrics *metrics,
15 CellularService *service)
16 : OutOfCreditsDetector(dispatcher, manager, metrics, service) {}
17
18MockOutOfCreditsDetector::~MockOutOfCreditsDetector() {}
19
20} // namespace shill