OLD | NEW |
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 #ifndef V8_API_H_ | 5 #ifndef V8_API_H_ |
6 #define V8_API_H_ | 6 #define V8_API_H_ |
7 | 7 |
8 #include "include/v8-testing.h" | 8 #include "include/v8-testing.h" |
9 #include "src/contexts.h" | 9 #include "src/contexts.h" |
10 #include "src/factory.h" | 10 #include "src/factory.h" |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 public: | 635 public: |
636 static v8::Testing::StressType stress_type() { return stress_type_; } | 636 static v8::Testing::StressType stress_type() { return stress_type_; } |
637 static void set_stress_type(v8::Testing::StressType stress_type) { | 637 static void set_stress_type(v8::Testing::StressType stress_type) { |
638 stress_type_ = stress_type; | 638 stress_type_ = stress_type; |
639 } | 639 } |
640 | 640 |
641 private: | 641 private: |
642 static v8::Testing::StressType stress_type_; | 642 static v8::Testing::StressType stress_type_; |
643 }; | 643 }; |
644 | 644 |
645 } } // namespace v8::internal | 645 } // namespace internal |
| 646 } // namespace v8 |
646 | 647 |
647 #endif // V8_API_H_ | 648 #endif // V8_API_H_ |
OLD | NEW |