blob: e9ab5b02ee88d1a17788bd34d7e4a7604907735d [file] [log] [blame]
Paul Stewart3f43f432012-07-16 12:12:45 -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#include "shill/link_monitor.h"
6
7#include <base/logging.h>
8
9#include "shill/connection.h"
10#include "shill/event_dispatcher.h"
11#include "shill/sockets.h"
12
13namespace shill {
14
15LinkMonitor::LinkMonitor(const ConnectionRefPtr &connection,
16 EventDispatcher *dispatcher,
17 const FailureCallback &failure_callback)
18 : connection_(connection),
19 dispatcher_(dispatcher),
20 failure_callback_(failure_callback),
21 sockets_(new Sockets()) {}
22
23LinkMonitor::~LinkMonitor() {}
24
25bool LinkMonitor::Start() {
26 NOTIMPLEMENTED();
27 return false;
28}
29
30void LinkMonitor::Stop() {
31 NOTIMPLEMENTED();
32}
33
34} // namespace shill