summaryrefslogtreecommitdiffstats
path: root/chromeos/network/network_connection_observer.cc
blob: 0cd31ecfbbcd9d1ff8839dcf15bf0a31051e8cfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) 2014 The Chromium 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 "chromeos/network/network_connection_observer.h"

namespace chromeos {

NetworkConnectionObserver::NetworkConnectionObserver() {
}

void NetworkConnectionObserver::ConnectToNetworkRequested(
    const std::string& service_path) {
}

void NetworkConnectionObserver::ConnectSucceeded(
    const std::string& service_path) {
}

void NetworkConnectionObserver::ConnectFailed(const std::string& service_path,
                                              const std::string& error_name) {
}

void NetworkConnectionObserver::DisconnectRequested(
    const std::string& service_path) {
}

NetworkConnectionObserver::~NetworkConnectionObserver() {
}

}  // namespace chromeos