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

Side by Side Diff: content/common/mime_util.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/common/mime_util.h ('k') | content/content_common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/common/mime_util.h"
6
7 #include <string>
8
9 #include "media/base/mime_util.h"
10 #include "net/base/mime_util.h"
11
12 namespace content {
13
14 bool IsSupportedMimeType(const std::string& mime_type) {
15 return net::IsSupportedMimeType(mime_type) ||
darin (slow to review) 2014/07/24 17:52:53 the only concern I have is that it could be confus
Ryan Sleevi 2014/07/24 18:24:09 I do think it's weird to have the truth of mime ty
16 media::IsSupportedMediaMimeType(mime_type);
17 }
18
19 }
OLDNEW
« no previous file with comments | « content/common/mime_util.h ('k') | content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698