blob: 5edd0253f64720a69c3ad823b48e147196856f0b [file] [log] [blame]
Rebecca Silberstein3d49ea42014-08-21 11:20:50 -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/mock_connectivity_trial.h"
6
7#include "shill/connection.h"
8
9namespace shill {
10
11MockConnectivityTrial::MockConnectivityTrial(ConnectionRefPtr connection,
12 int trial_timeout_seconds)
13 : ConnectivityTrial(connection,
Ben Chancc225ef2014-09-30 13:26:51 -070014 nullptr,
Rebecca Silberstein3d49ea42014-08-21 11:20:50 -070015 trial_timeout_seconds,
16 base::Callback<void(ConnectivityTrial::Result)>()) {}
17
18MockConnectivityTrial::~MockConnectivityTrial() {}
19
20} // namespace shill