OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/mime_registry_impl.h" | 5 #include "content/browser/mime_registry_impl.h" |
6 | 6 |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
9 #include "content/public/browser/browser_thread.h" | 9 #include "content/public/browser/browser_thread.h" |
10 #include "mojo/common/common_type_converters.h" | |
11 #include "mojo/public/cpp/bindings/strong_binding.h" | 10 #include "mojo/public/cpp/bindings/strong_binding.h" |
12 #include "net/base/mime_util.h" | 11 #include "net/base/mime_util.h" |
13 | 12 |
14 namespace content { | 13 namespace content { |
15 | 14 |
16 MimeRegistryImpl::MimeRegistryImpl() = default; | 15 MimeRegistryImpl::MimeRegistryImpl() = default; |
17 | 16 |
18 MimeRegistryImpl::~MimeRegistryImpl() = default; | 17 MimeRegistryImpl::~MimeRegistryImpl() = default; |
19 | 18 |
20 // static | 19 // static |
21 void MimeRegistryImpl::Create(blink::mojom::MimeRegistryRequest request) { | 20 void MimeRegistryImpl::Create(blink::mojom::MimeRegistryRequest request) { |
22 DCHECK_CURRENTLY_ON(BrowserThread::FILE); | 21 DCHECK_CURRENTLY_ON(BrowserThread::FILE); |
23 mojo::MakeStrongBinding(base::MakeUnique<MimeRegistryImpl>(), | 22 mojo::MakeStrongBinding(base::MakeUnique<MimeRegistryImpl>(), |
24 std::move(request)); | 23 std::move(request)); |
25 } | 24 } |
26 | 25 |
27 void MimeRegistryImpl::GetMimeTypeFromExtension( | 26 void MimeRegistryImpl::GetMimeTypeFromExtension( |
28 const std::string& extension, | 27 const std::string& extension, |
29 const GetMimeTypeFromExtensionCallback& callback) { | 28 const GetMimeTypeFromExtensionCallback& callback) { |
30 DCHECK_CURRENTLY_ON(BrowserThread::FILE); | 29 DCHECK_CURRENTLY_ON(BrowserThread::FILE); |
31 std::string mime_type; | 30 std::string mime_type; |
32 net::GetMimeTypeFromExtension( | 31 net::GetMimeTypeFromExtension( |
33 base::FilePath::FromUTF8Unsafe(extension).value(), &mime_type); | 32 base::FilePath::FromUTF8Unsafe(extension).value(), &mime_type); |
34 callback.Run(mime_type); | 33 callback.Run(mime_type); |
35 } | 34 } |
36 | 35 |
37 } // namespace content | 36 } // namespace content |
OLD | NEW |