summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/net/net_resource_provider.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/common/net/net_resource_provider.h')
-rw-r--r--chromium/chrome/common/net/net_resource_provider.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/chromium/chrome/common/net/net_resource_provider.h b/chromium/chrome/common/net/net_resource_provider.h
new file mode 100644
index 00000000000..7a2d5453e13
--- /dev/null
+++ b/chromium/chrome/common/net/net_resource_provider.h
@@ -0,0 +1,13 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_COMMON_NET_NET_RESOURCE_PROVIDER_H_
+#define CHROME_COMMON_NET_NET_RESOURCE_PROVIDER_H_
+
+#include "base/memory/ref_counted_memory.h"
+
+// This is called indirectly by the network layer to access resources.
+scoped_refptr<base::RefCountedMemory> ChromeNetResourceProvider(int key);
+
+#endif // CHROME_COMMON_NET_NET_RESOURCE_PROVIDER_H_