OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 13 matching lines...) Expand all Loading... |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #ifndef V8_D8_H_ | 28 #ifndef V8_D8_H_ |
29 #define V8_D8_H_ | 29 #define V8_D8_H_ |
30 | 30 |
31 #include "v8.h" | 31 #include "v8.h" |
32 #include "hashmap.h" | 32 #include "hashmap.h" |
33 | 33 |
| 34 #ifdef COMPRESS_STARTUP_DATA_BZ2 |
| 35 #error Using compressed startup data is not supported for D8 |
| 36 #endif |
34 | 37 |
35 namespace v8 { | 38 namespace v8 { |
36 | 39 |
37 | 40 |
38 namespace i = v8::internal; | 41 namespace i = v8::internal; |
39 | 42 |
40 | 43 |
41 // A single counter in a counter collection. | 44 // A single counter in a counter collection. |
42 class Counter { | 45 class Counter { |
43 public: | 46 public: |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 const char* name_; | 225 const char* name_; |
223 LineEditor* next_; | 226 LineEditor* next_; |
224 static LineEditor* first_; | 227 static LineEditor* first_; |
225 }; | 228 }; |
226 | 229 |
227 | 230 |
228 } // namespace v8 | 231 } // namespace v8 |
229 | 232 |
230 | 233 |
231 #endif // V8_D8_H_ | 234 #endif // V8_D8_H_ |
OLD | NEW |