Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / base / files / file_path.h
index 008b9f5..ad42b95 100644 (file)
 #include <vector>
 
 #include "base/base_export.h"
-#include "base/compiler_specific.h"
 #include "base/containers/hash_tables.h"
 #include "base/strings/string16.h"
 #include "base/strings/string_piece.h"  // For implicit conversions.
@@ -453,7 +452,6 @@ BASE_EXPORT extern void PrintTo(const base::FilePath& path, std::ostream* out);
 // Provide a hash function so that hash_sets and maps can contain FilePath
 // objects.
 namespace BASE_HASH_NAMESPACE {
-#if defined(COMPILER_GCC)
 
 template<>
 struct hash<base::FilePath> {
@@ -462,14 +460,6 @@ struct hash<base::FilePath> {
   }
 };
 
-#elif defined(COMPILER_MSVC)
-
-inline size_t hash_value(const base::FilePath& f) {
-  return hash_value(f.value());
-}
-
-#endif  // COMPILER
-
 }  // namespace BASE_HASH_NAMESPACE
 
 #endif  // BASE_FILES_FILE_PATH_H_