blob: 3e0ffdf3f557ef3333568fac6e8ca228fa94702c [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"
Rebecca Silberstein3d49ea42014-08-21 11:20:50 -07008#include "shill/connectivity_trial.h"
Paul Stewartc681fa02012-03-02 19:40:04 -08009
10namespace shill {
11
12MockPortalDetector::MockPortalDetector(ConnectionRefPtr connection)
Rebecca Silberstein3d49ea42014-08-21 11:20:50 -070013 : PortalDetector(connection,
Ben Chancc225ef2014-09-30 13:26:51 -070014 nullptr,
Rebecca Silberstein3d49ea42014-08-21 11:20:50 -070015 base::Callback<void(const PortalDetector::Result&)>()) {}
Paul Stewartc681fa02012-03-02 19:40:04 -080016
17MockPortalDetector::~MockPortalDetector() {}
18
19} // namespace shill