// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/offline_pages/core/background/connection_notifier.h" namespace offline_pages { ConnectionNotifier::ConnectionNotifier( ConnectionNotifier::ConnectedCallback callback) : … { … } ConnectionNotifier::~ConnectionNotifier() { … } void ConnectionNotifier::OnNetworkChanged( net::NetworkChangeNotifier::ConnectionType type) { … } } // namespace offline_pages