blob: c409a7d48a3b1147f49c6d2cbaf42e30b846a282 [file] [log] [blame]
// 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) {
resource_provider = func;
}
// static
scoped_refptr<base::RefCountedMemory> NetModule::GetResource(int key) {
return resource_provider ? resource_provider(key) : nullptr;
}
} // namespace net