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

Side by Side Diff: net/base/platform_mime_util.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « net/base/openssl_private_key_store_memory.cc ('k') | net/base/platform_mime_util_linux.cc » ('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 (c) 2012 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 #ifndef NET_BASE_PLATFORM_MIME_UTIL_H_
6 #define NET_BASE_PLATFORM_MIME_UTIL_H_
7
8 #include <string>
9
10 #include "base/containers/hash_tables.h"
11 #include "base/files/file_path.h"
12
13 namespace net {
14
15 // Encapsulates the platform-specific functionality in mime_util.
16 class PlatformMimeUtil {
17 public:
18 // See documentation for base::GetPreferredExtensionForMimeType [mime_util.h]
19 bool GetPreferredExtensionForMimeType(
20 const std::string& mime_type,
21 base::FilePath::StringType* extension) const;
22
23 // Adds all the extensions that the platform associates with the type
24 // |mime_type| to the set |extensions|. Returns at least the value returned
25 // by GetPreferredExtensionForMimeType.
26 void GetPlatformExtensionsForMimeType(
27 const std::string& mime_type,
28 base::hash_set<base::FilePath::StringType>* extensions) const;
29
30 protected:
31 // Get the mime type (if any) that is associated with the file extension.
32 // Returns true if a corresponding mime type exists.
33 bool GetPlatformMimeTypeFromExtension(const base::FilePath::StringType& ext,
34 std::string* mime_type) const;
35 };
36
37 } // namespace net
38
39 #endif // NET_BASE_PLATFORM_MIME_UTIL_H_
OLDNEW
« no previous file with comments | « net/base/openssl_private_key_store_memory.cc ('k') | net/base/platform_mime_util_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698