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

Unified Diff: base/file_path.h

Issue 6759017: iwyu: Cleanup in the following files: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright again. Created 9 years, 9 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
« no previous file with comments | « base/file_descriptor_shuffle.cc ('k') | base/file_path.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/file_path.h
diff --git a/base/file_path.h b/base/file_path.h
index 8ec66a2b5d2c0fb8579b60591f2289b6352b8a52..fd9260cfd46f96c817703b2b055cb518a697b912 100644
--- a/base/file_path.h
+++ b/base/file_path.h
@@ -100,14 +100,16 @@
#define BASE_FILE_PATH_H_
#pragma once
+#include <stddef.h>
#include <string>
#include <vector>
#include "base/base_api.h"
-#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/hash_tables.h"
+#include "base/string16.h"
#include "base/string_piece.h" // For implicit conversions.
+#include "build/build_config.h"
// Windows-style drive letter support and pathname separator characters can be
// enabled and disabled independently, to aid testing. These #defines are
@@ -386,7 +388,7 @@ namespace __gnu_cxx {
template<>
struct hash<FilePath> {
- std::size_t operator()(const FilePath& f) const {
+ size_t operator()(const FilePath& f) const {
return hash<FilePath::StringType>()(f.value());
}
};
« no previous file with comments | « base/file_descriptor_shuffle.cc ('k') | base/file_path.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698