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

Side by Side Diff: src/d8.cc

Issue 2622503002: include fixing: api.h shouldn't include objects-inl.h (Closed)
Patch Set: static type check Created 3 years, 11 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 unified diff | Download patch
« no previous file with comments | « src/crankshaft/hydrogen-types.cc ('k') | src/elements-kind.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <errno.h> 5 #include <errno.h>
6 #include <stdlib.h> 6 #include <stdlib.h>
7 #include <string.h> 7 #include <string.h>
8 #include <sys/stat.h> 8 #include <sys/stat.h>
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 14 matching lines...) Expand all
25 #include "src/api.h" 25 #include "src/api.h"
26 #include "src/base/cpu.h" 26 #include "src/base/cpu.h"
27 #include "src/base/debug/stack_trace.h" 27 #include "src/base/debug/stack_trace.h"
28 #include "src/base/logging.h" 28 #include "src/base/logging.h"
29 #include "src/base/platform/platform.h" 29 #include "src/base/platform/platform.h"
30 #include "src/base/platform/time.h" 30 #include "src/base/platform/time.h"
31 #include "src/base/sys-info.h" 31 #include "src/base/sys-info.h"
32 #include "src/basic-block-profiler.h" 32 #include "src/basic-block-profiler.h"
33 #include "src/interpreter/interpreter.h" 33 #include "src/interpreter/interpreter.h"
34 #include "src/msan.h" 34 #include "src/msan.h"
35 #include "src/objects-inl.h"
35 #include "src/snapshot/natives.h" 36 #include "src/snapshot/natives.h"
36 #include "src/utils.h" 37 #include "src/utils.h"
37 #include "src/v8.h" 38 #include "src/v8.h"
38 39
39 #ifdef V8_INSPECTOR_ENABLED 40 #ifdef V8_INSPECTOR_ENABLED
40 #include "include/v8-inspector.h" 41 #include "include/v8-inspector.h"
41 #endif // V8_INSPECTOR_ENABLED 42 #endif // V8_INSPECTOR_ENABLED
42 43
43 #if !defined(_WIN32) && !defined(_WIN64) 44 #if !defined(_WIN32) && !defined(_WIN64)
44 #include <unistd.h> // NOLINT 45 #include <unistd.h> // NOLINT
(...skipping 3035 matching lines...) Expand 10 before | Expand all | Expand 10 after
3080 } 3081 }
3081 3082
3082 } // namespace v8 3083 } // namespace v8
3083 3084
3084 3085
3085 #ifndef GOOGLE3 3086 #ifndef GOOGLE3
3086 int main(int argc, char* argv[]) { 3087 int main(int argc, char* argv[]) {
3087 return v8::Shell::Main(argc, argv); 3088 return v8::Shell::Main(argc, argv);
3088 } 3089 }
3089 #endif 3090 #endif
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen-types.cc ('k') | src/elements-kind.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698