blob: b37779fd88acd7ac19819122f3c99009a4c24821 [file] [log] [blame]
Ben Chanc07362b2012-05-12 10:54:11 -07001// 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_WIMAX_SERVICE_H_
6#define SHILL_MOCK_WIMAX_SERVICE_H_
7
8#include <gmock/gmock.h>
9
10#include "shill/wimax_service.h"
11
12namespace shill {
13
14class MockWiMaxService : public WiMaxService {
15 public:
16 MockWiMaxService(ControlInterface *control,
17 EventDispatcher *dispatcher,
18 Metrics *metrics,
19 Manager *manager,
20 const WiMaxRefPtr &wimax);
21 virtual ~MockWiMaxService();
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(MockWiMaxService);
25};
26
27} // namespace shill
28
29#endif // SHILL_MOCK_WIMAX_SERVICE_H_