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

Unified Diff: net/base/platform_mime_util.h

Issue 1869503003: Convert //net and //chromecast to std::unordered_* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cast Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: net/base/platform_mime_util.h
diff --git a/net/base/platform_mime_util.h b/net/base/platform_mime_util.h
index 726cea4341458f3bce057753bac50dbc33443f4a..f79d84324a9df2539ef3e62080f3c63924d78cd4 100644
--- a/net/base/platform_mime_util.h
+++ b/net/base/platform_mime_util.h
@@ -6,8 +6,8 @@
#define NET_BASE_PLATFORM_MIME_UTIL_H_
#include <string>
+#include <unordered_set>
-#include "base/containers/hash_tables.h"
#include "base/files/file_path.h"
namespace net {
@@ -25,7 +25,7 @@ class PlatformMimeUtil {
// by GetPreferredExtensionForMimeType.
void GetPlatformExtensionsForMimeType(
const std::string& mime_type,
- base::hash_set<base::FilePath::StringType>* extensions) const;
+ std::unordered_set<base::FilePath::StringType>* extensions) const;
protected:
// Get the mime type (if any) that is associated with the file extension.

Powered by Google App Engine
This is Rietveld 408576698