Index: content/browser/net/referrer.h |
diff --git a/content/browser/net/referrer.h b/content/browser/net/referrer.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a009bcac95d17ace6817885cbc8c9bb99f670f99 |
--- /dev/null |
+++ b/content/browser/net/referrer.h |
@@ -0,0 +1,20 @@ |
+// Copyright 2013 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 CONTENT_BROWSER_NET_REFERRER_H_ |
+#define CONTENT_BROWSER_NET_REFERRER_H_ |
+ |
+namespace net { |
+class URLRequest; |
+} |
+ |
+namespace content { |
+ |
+struct Referrer; |
+ |
+void SetReferrerForRequest(net::URLRequest* request, const Referrer& referrer); |
+ |
+} // namespace content |
+ |
+#endif |