summaryrefslogtreecommitdiffstats
path: root/chromeos/network/network_connection_observer.cc
blob: 4c4f5aea060893b4b57496a3a8c82ffd7fc329bd (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::DiconnectRequested(
    const std::string& service_path) {
}

NetworkConnectionObserver::~NetworkConnectionObserver() {
}

}  // namespace chromeos