chromium/content/browser/network/browser_online_state_observer.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/network/browser_online_state_observer.h"

#include "content/common/renderer.mojom.h"
#include "content/public/browser/render_process_host.h"

namespace content {

BrowserOnlineStateObserver::BrowserOnlineStateObserver() {}

BrowserOnlineStateObserver::~BrowserOnlineStateObserver() {}

void BrowserOnlineStateObserver::OnMaxBandwidthChanged(
    double max_bandwidth_mbps,
    net::NetworkChangeNotifier::ConnectionType type) {}

void BrowserOnlineStateObserver::OnRenderProcessHostCreated(
    content::RenderProcessHost* rph) {}

}  // namespace content