blob: 971439db5ae88b0ecaeb44df439a3f7dd6dc0c3e [file] [log] [blame]
// Copyright (c) 2012 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_state_handler_observer.h"
namespace chromeos {
NetworkStateHandlerObserver::NetworkStateHandlerObserver() {
}
NetworkStateHandlerObserver::~NetworkStateHandlerObserver() {
}
void NetworkStateHandlerObserver::NetworkListChanged() {
}
void NetworkStateHandlerObserver::DeviceListChanged() {
}
void NetworkStateHandlerObserver::DefaultNetworkChanged(
const NetworkState* network) {
}
void NetworkStateHandlerObserver::NetworkConnectionStateChanged(
const NetworkState* network) {
}
void NetworkStateHandlerObserver::NetworkPropertiesUpdated(
const NetworkState* network) {
}
void NetworkStateHandlerObserver::DevicePropertiesUpdated(
const chromeos::DeviceState* device) {
}
void NetworkStateHandlerObserver::ScanCompleted(const DeviceState* device) {
}
void NetworkStateHandlerObserver::OnShuttingDown() {}
} // namespace chromeos