Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1530)

Unified Diff: content/renderer/media/cache_util.h

Issue 18123002: Migrate webkit/renderer/media/ to content/renderer/media/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698