blob: 6e7463b0c041e01ddf7d64ca1925e4f98df45ff3 [file] [log] [blame]
Thieu Le3426c8f2012-01-11 17:35:11 -08001// Copyright (c) 2012 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#ifndef SHILL_MOCK_METRICS_
6#define SHILL_MOCK_METRICS_
7
8#include "shill/metrics.h"
9
10namespace shill {
11
12class MockMetrics : public Metrics {
13 public:
14 MockMetrics();
15 virtual ~MockMetrics();
16
17 private:
18 DISALLOW_COPY_AND_ASSIGN(MockMetrics);
19};
20
21}
22
23#endif // SHILL_MOCK_METRICS_