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

Unified Diff: Source/wtf/FastMalloc.cpp

Issue 14810003: Move CPU() macro to it's own header from wtf/Platform.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move CPU() macro to it's own header from wtf/Platform.h Created 7 years, 7 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/CPU.h ('k') | Source/wtf/MathExtras.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/FastMalloc.cpp
diff --git a/Source/wtf/FastMalloc.cpp b/Source/wtf/FastMalloc.cpp
index 5af0a0f7154e166129a2e02f060462e97bf87606..5dcaa6d40ba43dd6f1591a830a4ef7f7c93329aa 100644
--- a/Source/wtf/FastMalloc.cpp
+++ b/Source/wtf/FastMalloc.cpp
@@ -75,9 +75,12 @@
// goes from about 1100 ns to about 300 ns.
#include "config.h"
-#include "FastMalloc.h"
+#include "wtf/FastMalloc.h"
-#include "Assertions.h"
+#include "wtf/Assertions.h"
+#include "wtf/CPU.h"
+#include "wtf/StdLibExtras.h"
+#include "wtf/UnusedParam.h"
#include <limits>
#if OS(WINDOWS)
@@ -86,8 +89,6 @@
#include <pthread.h>
#endif
#include <string.h>
-#include <wtf/StdLibExtras.h>
-#include <wtf/UnusedParam.h>
#ifndef NO_TCMALLOC_SAMPLES
#define NO_TCMALLOC_SAMPLES
« no previous file with comments | « Source/wtf/CPU.h ('k') | Source/wtf/MathExtras.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698