network_change_notifier_cast.cc revision 116680a4aac90f2aa7413d9095a592090648e557
1ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov// Copyright 2014 The Chromium Authors. All rights reserved.
2ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov// Use of this source code is governed by a BSD-style license that can be
3ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov// found in the LICENSE file.
4ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov
5ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov#include "chromecast/net/network_change_notifier_cast.h"
6ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov
7ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganovnamespace chromecast {
8ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov
9ee451cb395940862dad63c85adfe8f2fd55e864cSvet GanovNetworkChangeNotifierCast::NetworkChangeNotifierCast() {
10ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov}
11ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov
12ee451cb395940862dad63c85adfe8f2fd55e864cSvet GanovNetworkChangeNotifierCast::~NetworkChangeNotifierCast() {
13ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov}
14ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov
15ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganovnet::NetworkChangeNotifier::ConnectionType
16ee451cb395940862dad63c85adfe8f2fd55e864cSvet GanovNetworkChangeNotifierCast::GetCurrentConnectionType() const {
17ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov  return net::NetworkChangeNotifier::CONNECTION_NONE;
18ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov}
19ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov
20ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov}  // namespace chromecast
21ee451cb395940862dad63c85adfe8f2fd55e864cSvet Ganov