Index: chrome/browser/prefetch/prefetch.h |
diff --git a/chrome/browser/prefetch/prefetch.h b/chrome/browser/prefetch/prefetch.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1597711c5d854764c4dca684e063350fa57e897f |
--- /dev/null |
+++ b/chrome/browser/prefetch/prefetch.h |
@@ -0,0 +1,18 @@ |
+// Copyright 2014 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_BROWSER_PREFETCH_PREFETCH_H_ |
+#define CHROME_BROWSER_PREFETCH_PREFETCH_H_ |
+ |
+namespace content { |
+class ResourceContext; |
+} |
+ |
+namespace prefetch { |
+ |
+bool IsPrefetchEnabled(content::ResourceContext* resource_context); |
tburkard
2014/01/27 12:26:34
This is intended to only run on the IO thread, cor
jkarlin
2014/01/27 13:49:00
Done.
|
+ |
+} // namespace prefetch |
+ |
+#endif // CHROME_BROWSER_PREFETCH_PREFETCH_H_ |