| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_ | 5 #ifndef V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_ |
| 6 #define V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_ | 6 #define V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "include/v8.h" | 10 #include "include/v8.h" |
| 11 #include "src/base/macros.h" | 11 #include "src/base/macros.h" |
| 12 #include "src/globals.h" | 12 #include "src/globals.h" |
| 13 #include "src/handles.h" | 13 #include "src/handles.h" |
| 14 #include "testing/gtest/include/gtest/gtest_prod.h" | 14 #include "testing/gtest/include/gtest/gtest_prod.h" // nogncheck |
| 15 | 15 |
| 16 namespace v8 { | 16 namespace v8 { |
| 17 namespace internal { | 17 namespace internal { |
| 18 | 18 |
| 19 class AstValueFactory; | 19 class AstValueFactory; |
| 20 class AstStringConstants; | 20 class AstStringConstants; |
| 21 class CompilerDispatcherTracer; | 21 class CompilerDispatcherTracer; |
| 22 class CompilationInfo; | 22 class CompilationInfo; |
| 23 class CompilationJob; | 23 class CompilationJob; |
| 24 class DeferredHandles; | 24 class DeferredHandles; |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 bool trace_compiler_dispatcher_jobs_; | 153 bool trace_compiler_dispatcher_jobs_; |
| 154 | 154 |
| 155 DISALLOW_COPY_AND_ASSIGN(CompilerDispatcherJob); | 155 DISALLOW_COPY_AND_ASSIGN(CompilerDispatcherJob); |
| 156 }; | 156 }; |
| 157 | 157 |
| 158 } // namespace internal | 158 } // namespace internal |
| 159 } // namespace v8 | 159 } // namespace v8 |
| 160 | 160 |
| 161 #endif // V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_ | 161 #endif // V8_COMPILER_DISPATCHER_COMPILER_DISPATCHER_JOB_H_ |
| OLD | NEW |