Index: content/renderer/media/cache_util.h |
diff --git a/webkit/renderer/media/cache_util.h b/content/renderer/media/cache_util.h |
similarity index 78% |
rename from webkit/renderer/media/cache_util.h |
rename to content/renderer/media/cache_util.h |
index 7512804a7122c9b4f38928dc1c1facdd50ac176e..061e87a4e73fcf3fa8d3803f6a63be37b534102f 100644 |
--- a/webkit/renderer/media/cache_util.h |
+++ b/content/renderer/media/cache_util.h |
@@ -2,18 +2,19 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef WEBKIT_RENDERER_MEDIA_CACHE_UTIL_H_ |
-#define WEBKIT_RENDERER_MEDIA_CACHE_UTIL_H_ |
+#ifndef CONTENT_RENDERER_MEDIA_CACHE_UTIL_H_ |
+#define CONTENT_RENDERER_MEDIA_CACHE_UTIL_H_ |
#include <vector> |
#include "base/basictypes.h" |
+#include "content/common/content_export.h" |
namespace WebKit { |
class WebURLResponse; |
} |
-namespace webkit_media { |
+namespace content { |
// Reasons that a cached WebURLResponse will *not* prevent a future request to |
// the server. Reported via UMA, so don't change/reuse previously-existing |
@@ -32,8 +33,9 @@ enum UncacheableReason { |
// Return the logical OR of the reasons "response" cannot be used for a future |
// request (using the disk cache), or 0 if it might be useful. |
-uint32 GetReasonsForUncacheability(const WebKit::WebURLResponse& response); |
+uint32 CONTENT_EXPORT GetReasonsForUncacheability( |
+ const WebKit::WebURLResponse& response); |
-} // namespace webkit_media |
+} // namespace content |
-#endif // WEBKIT_RENDERER_MEDIA_CACHE_UTIL_H_ |
+#endif // CONTENT_RENDERER_MEDIA_CACHE_UTIL_H_ |