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

Unified Diff: src/heap.cc

Issue 333013002: Check alpha-sorting of includes during presubmit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « src/gdb-jit.cc ('k') | src/hydrogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index d9a4279474ecb2ac3191e575f791875456c531ab..3a396f7265ed3cfd40b9a747e996fe146bac9b69 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -20,23 +20,24 @@
#include "src/isolate-inl.h"
#include "src/mark-compact.h"
#include "src/natives.h"
-#include "src/objects-visiting.h"
#include "src/objects-visiting-inl.h"
+#include "src/objects-visiting.h"
#include "src/runtime-profiler.h"
#include "src/scopeinfo.h"
#include "src/snapshot.h"
#include "src/store-buffer.h"
-#include "src/utils/random-number-generator.h"
#include "src/utils.h"
+#include "src/utils/random-number-generator.h"
#include "src/v8threads.h"
#include "src/vm-state-inl.h"
+
#if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP
-#include "src/regexp-macro-assembler.h"
-#include "src/arm/regexp-macro-assembler-arm.h"
+#include "src/regexp-macro-assembler.h" // NOLINT
+#include "src/arm/regexp-macro-assembler-arm.h" // NOLINT
#endif
#if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP
-#include "src/regexp-macro-assembler.h"
-#include "src/mips/regexp-macro-assembler-mips.h"
+#include "src/regexp-macro-assembler.h" // NOLINT
+#include "src/mips/regexp-macro-assembler-mips.h" // NOLINT
#endif
namespace v8 {
« no previous file with comments | « src/gdb-jit.cc ('k') | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698