Bump libaddressinput version.
[chromium-blink-merge.git] / chromecast / net / network_change_notifier_factory_cast.cc
blobc446b1e5768d1244e01452e02fd52c8077fa78d3
1 // Copyright 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 "chromecast/net/network_change_notifier_factory_cast.h"
7 #include "chromecast/net/network_change_notifier_cast.h"
9 namespace chromecast {
11 net::NetworkChangeNotifier* NetworkChangeNotifierFactoryCast::CreateInstance() {
12 // Caller assumes ownership.
13 return new NetworkChangeNotifierCast();
16 NetworkChangeNotifierFactoryCast::~NetworkChangeNotifierFactoryCast() {
19 } // namespace chromecast