1 // Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights 2 // reserved. Use of this source code is governed by a BSD-style license that 3 // can be found in the LICENSE file. 4 5 #ifndef CEF_LIBCEF_COMMON_NET_RESOURCE_PROVIDER_H_ 6 #define CEF_LIBCEF_COMMON_NET_RESOURCE_PROVIDER_H_ 7 #pragma once 8 9 #include "base/memory/ref_counted_memory.h" 10 11 // This is called indirectly by the network layer to access resources. 12 scoped_refptr<base::RefCountedMemory> NetResourceProvider(int key); 13 14 #endif // CEF_LIBCEF_COMMON_NET_RESOURCE_PROVIDER_H_ 15