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

Unified Diff: content/child/assert_matching_enums.cc

Issue 401523002: Move media related mimetype functionality out of net/ and into media/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and add content/common/mime_util.h for realz Created 6 years, 5 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/child/assert_matching_enums.cc
diff --git a/content/child/assert_matching_enums.cc b/content/child/assert_matching_enums.cc
index ddfd221b78388ac0c7bbac2e1f7db58916661e04..fbb66d30ededa9201676c7c434b7a5ab31efa260 100644
--- a/content/child/assert_matching_enums.cc
+++ b/content/child/assert_matching_enums.cc
@@ -8,7 +8,7 @@
#include "base/macros.h"
#include "cc/animation/animation.h"
#include "content/public/common/screen_orientation_values.h"
-#include "net/base/mime_util.h"
+#include "media/base/mime_util.h"
#include "third_party/WebKit/public/platform/WebAnimation.h"
#include "third_party/WebKit/public/platform/WebMimeRegistry.h"
#include "third_party/WebKit/public/platform/WebScreenOrientationLockType.h"
@@ -40,11 +40,11 @@ COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationLockNatural,
// SupportsType
COMPILE_ASSERT_MATCHING_ENUM(blink::WebMimeRegistry::IsNotSupported,
- net::IsNotSupported);
+ media::IsNotSupported);
COMPILE_ASSERT_MATCHING_ENUM(blink::WebMimeRegistry::IsSupported,
- net::IsSupported);
+ media::IsSupported);
COMPILE_ASSERT_MATCHING_ENUM(blink::WebMimeRegistry::MayBeSupported,
- net::MayBeSupported);
+ media::MayBeSupported);
// TargetProperty
COMPILE_ASSERT_MATCHING_ENUM(blink::WebAnimation::TargetPropertyTransform,

Powered by Google App Engine
This is Rietveld 408576698