| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "net/base/platform_mime_util.h" | 7 #include "net/base/platform_mime_util.h" |
| 8 | 8 |
| 9 #include "base/registry.h" | 9 #include "base/registry.h" |
| 10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| 11 | 11 |
| 12 namespace net { | 12 namespace net { |
| 13 | 13 |
| 14 bool PlatformMimeUtil::GetPlatformMimeTypeFromExtension( | 14 bool PlatformMimeUtil::GetPlatformMimeTypeFromExtension( |
| 15 const FilePath::StringType& ext, std::string* result) const { | 15 const FilePath::StringType& ext, std::string* result) const { |
| 16 // check windows registry for file extension's mime type (registry key | 16 // check windows registry for file extension's mime type (registry key |
| 17 // names are not case-sensitive). | 17 // names are not case-sensitive). |
| 18 std::wstring value, key = L"." + ext; | 18 std::wstring value, key = L"." + ext; |
| 19 RegKey(HKEY_CLASSES_ROOT, key.c_str()).ReadValue(L"Content Type", &value); | 19 RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(L"Content Type", |
| 20 &value); |
| 20 if (!value.empty()) { | 21 if (!value.empty()) { |
| 21 *result = WideToUTF8(value); | 22 *result = WideToUTF8(value); |
| 22 return true; | 23 return true; |
| 23 } | 24 } |
| 24 return false; | 25 return false; |
| 25 } | 26 } |
| 26 | 27 |
| 27 bool PlatformMimeUtil::GetPreferredExtensionForMimeType( | 28 bool PlatformMimeUtil::GetPreferredExtensionForMimeType( |
| 28 const std::string& mime_type, FilePath::StringType* ext) const { | 29 const std::string& mime_type, FilePath::StringType* ext) const { |
| 29 std::wstring key(L"MIME\\Database\\Content Type\\" + UTF8ToWide(mime_type)); | 30 std::wstring key(L"MIME\\Database\\Content Type\\" + UTF8ToWide(mime_type)); |
| 30 if (!RegKey(HKEY_CLASSES_ROOT, key.c_str()).ReadValue(L"Extension", ext)) | 31 if (!RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(L"Extension", |
| 32 ext)) { |
| 31 return false; | 33 return false; |
| 32 | 34 } |
| 33 // Strip off the leading dot, this should always be the case. | 35 // Strip off the leading dot, this should always be the case. |
| 34 if (!ext->empty() && ext->at(0) == L'.') | 36 if (!ext->empty() && ext->at(0) == L'.') |
| 35 ext->erase(ext->begin()); | 37 ext->erase(ext->begin()); |
| 36 | 38 |
| 37 return true; | 39 return true; |
| 38 } | 40 } |
| 39 | 41 |
| 40 } // namespace net | 42 } // namespace net |
| OLD | NEW |