chromium/net/base/net_module.cc

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

#include "net/base/net_module.h"

#include "base/memory/ref_counted_memory.h"

namespace net {

static NetModule::ResourceProvider resource_provider;

// static
void NetModule::SetResourceProvider(ResourceProvider func) {}

// static
scoped_refptr<base::RefCountedMemory> NetModule::GetResource(int key) {}

}  // namespace net