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

Unified Diff: Source/wtf/HashTable.h

Issue 18095003: Replace #include <wtf/foo.h> with #include "wtf/foo.h" in Source/wtf. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 | « Source/wtf/HashSet.h ('k') | Source/wtf/HashTraits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/HashTable.h
diff --git a/Source/wtf/HashTable.h b/Source/wtf/HashTable.h
index 3afdd0582298122bb2b45e6f96d8f09ddb482c12..88615b268eeadb0d712a71494f3cacd58da84bd5 100644
--- a/Source/wtf/HashTable.h
+++ b/Source/wtf/HashTable.h
@@ -22,10 +22,10 @@
#ifndef WTF_HashTable_h
#define WTF_HashTable_h
-#include <wtf/Alignment.h>
-#include <wtf/Assertions.h>
-#include <wtf/FastMalloc.h>
-#include <wtf/HashTraits.h>
+#include "wtf/Alignment.h"
+#include "wtf/Assertions.h"
+#include "wtf/FastMalloc.h"
+#include "wtf/HashTraits.h"
#include <string.h>
#define DUMP_HASHTABLE_STATS 0
@@ -44,13 +44,13 @@
#if CHECK_HASHTABLE_ITERATORS
// Required for CHECK_HASHTABLE_ITERATORS.
-#include <wtf/OwnPtr.h>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/Threading.h>
+#include "wtf/OwnPtr.h"
+#include "wtf/PassOwnPtr.h"
+#include "wtf/Threading.h"
#endif
#if DUMP_HASHTABLE_STATS_PER_TABLE
-#include <wtf/DataLog.h>
+#include "wtf/DataLog.h"
#endif
namespace WTF {
@@ -1415,6 +1415,6 @@ namespace WTF {
} // namespace WTF
-#include <wtf/HashIterators.h>
+#include "wtf/HashIterators.h"
#endif // WTF_HashTable_h
« no previous file with comments | « Source/wtf/HashSet.h ('k') | Source/wtf/HashTraits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698