blob: 21adb7755b3254d7dff5f534691bc68c8406e71a [file] [log] [blame]
Paul Stewartc681fa02012-03-02 19:40:04 -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#include "shill/mock_portal_detector.h"
6
7#include "shill/connection.h"
8
9namespace shill {
10
11MockPortalDetector::MockPortalDetector(ConnectionRefPtr connection)
Eric Shienbrood3e20a232012-02-16 11:35:56 -050012 : PortalDetector(connection, NULL, base::Callback<void(const Result&)>()) {}
Paul Stewartc681fa02012-03-02 19:40:04 -080013
14MockPortalDetector::~MockPortalDetector() {}
15
16} // namespace shill