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

Side by Side Diff: src/api.cc

Issue 1283033003: Remove inline header includes from non-inline headers (1). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix GCC for realz. Created 5 years, 4 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/api.h ('k') | src/arm/regexp-macro-assembler-arm.h » ('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 "src/api.h" 5 #include "src/api.h"
6 6
7 #include <string.h> // For memcpy, strlen. 7 #include <string.h> // For memcpy, strlen.
8 #ifdef V8_USE_ADDRESS_SANITIZER 8 #ifdef V8_USE_ADDRESS_SANITIZER
9 #include <sanitizer/asan_interface.h> 9 #include <sanitizer/asan_interface.h>
10 #endif // V8_USE_ADDRESS_SANITIZER 10 #endif // V8_USE_ADDRESS_SANITIZER
11 #include <cmath> // For isnan. 11 #include <cmath> // For isnan.
12 #include "include/v8-debug.h" 12 #include "include/v8-debug.h"
13 #include "include/v8-profiler.h" 13 #include "include/v8-profiler.h"
14 #include "include/v8-testing.h" 14 #include "include/v8-testing.h"
15 #include "src/api-natives.h" 15 #include "src/api-natives.h"
16 #include "src/assert-scope.h" 16 #include "src/assert-scope.h"
17 #include "src/background-parsing-task.h" 17 #include "src/background-parsing-task.h"
18 #include "src/base/functional.h" 18 #include "src/base/functional.h"
19 #include "src/base/platform/platform.h" 19 #include "src/base/platform/platform.h"
20 #include "src/base/platform/time.h" 20 #include "src/base/platform/time.h"
21 #include "src/base/utils/random-number-generator.h" 21 #include "src/base/utils/random-number-generator.h"
22 #include "src/bootstrapper.h" 22 #include "src/bootstrapper.h"
23 #include "src/char-predicates-inl.h"
23 #include "src/code-stubs.h" 24 #include "src/code-stubs.h"
24 #include "src/compiler.h" 25 #include "src/compiler.h"
25 #include "src/context-measure.h" 26 #include "src/context-measure.h"
26 #include "src/contexts.h" 27 #include "src/contexts.h"
27 #include "src/conversions-inl.h" 28 #include "src/conversions-inl.h"
28 #include "src/counters.h" 29 #include "src/counters.h"
29 #include "src/cpu-profiler.h" 30 #include "src/cpu-profiler.h"
30 #include "src/debug/debug.h" 31 #include "src/debug/debug.h"
31 #include "src/deoptimizer.h" 32 #include "src/deoptimizer.h"
32 #include "src/execution.h" 33 #include "src/execution.h"
(...skipping 8391 matching lines...) Expand 10 before | Expand all | Expand 10 after
8424 Address callback_address = 8425 Address callback_address =
8425 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback)); 8426 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback));
8426 VMState<EXTERNAL> state(isolate); 8427 VMState<EXTERNAL> state(isolate);
8427 ExternalCallbackScope call_scope(isolate, callback_address); 8428 ExternalCallbackScope call_scope(isolate, callback_address);
8428 callback(info); 8429 callback(info);
8429 } 8430 }
8430 8431
8431 8432
8432 } // namespace internal 8433 } // namespace internal
8433 } // namespace v8 8434 } // namespace v8
OLDNEW
« no previous file with comments | « src/api.h ('k') | src/arm/regexp-macro-assembler-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698