summaryrefslogtreecommitdiff
path: root/mock_connectivity_trial.cc
blob: 5edd0253f64720a69c3ad823b48e147196856f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "shill/mock_connectivity_trial.h"

#include "shill/connection.h"

namespace shill {

MockConnectivityTrial::MockConnectivityTrial(ConnectionRefPtr connection,
                                             int trial_timeout_seconds)
    : ConnectivityTrial(connection,
                        nullptr,
                        trial_timeout_seconds,
                        base::Callback<void(ConnectivityTrial::Result)>()) {}

MockConnectivityTrial::~MockConnectivityTrial() {}

}  // namespace shill