1 // Copyright (c) 2014 The Chromium 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.
5 #include "chromeos/network/network_connection_observer.h"
9 NetworkConnectionObserver::NetworkConnectionObserver() {
12 void NetworkConnectionObserver::ConnectToNetworkRequested(
13 const std::string
& service_path
) {
16 void NetworkConnectionObserver::ConnectSucceeded(
17 const std::string
& service_path
) {
20 void NetworkConnectionObserver::ConnectFailed(const std::string
& service_path
,
21 const std::string
& error_name
) {
24 void NetworkConnectionObserver::DisconnectRequested(
25 const std::string
& service_path
) {
28 NetworkConnectionObserver::~NetworkConnectionObserver() {
31 } // namespace chromeos