OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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_MIME_EXTENSION_CHROMEOS_H_ |
| 6 #define NET_BASE_MIME_EXTENSION_CHROMEOS_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/files/file_path.h" |
| 11 |
| 12 namespace net { |
| 13 namespace chromeos { |
| 14 |
| 15 bool GetPlatformMimeTypeFromExtension(const base::FilePath::StringType& ext, |
| 16 std::string* mime_type); |
| 17 |
| 18 } // namespace chromeos |
| 19 } // namespace net |
| 20 |
| 21 #endif // NET_BASE_MIME_EXTENSION_CHROMEOS_H_ |
OLD | NEW |