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

Unified Diff: content/common/mime_util.cc

Issue 877323009: Extracted media mime type checks from net/base/ into media/base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build fixes #1 Created 5 years, 10 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/common/mime_util.cc
diff --git a/content/common/mime_util.cc b/content/common/mime_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e5b781a14cdcfd3f7aec2364403167c0398799e0
--- /dev/null
+++ b/content/common/mime_util.cc
@@ -0,0 +1,16 @@
+// Copyright 2015 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.
+
+#include "media/base/mime_util.h"
+#include "net/base/mime_util.h"
+
+namespace content {
+
+bool IsSupportedMimeType(const std::string& mime_type) {
+ return net::IsSupportedMimeType_deprecated(mime_type) ||
+ media::IsSupportedMediaMimeType(mime_type);
+}
+
+} // namespace content
+
« no previous file with comments | « content/common/mime_util.h ('k') | content/content_common.gypi » ('j') | net/base/mime_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698