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_LOG_H_ | 5 #ifndef V8_LOG_H_ |
6 #define V8_LOG_H_ | 6 #define V8_LOG_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
519 | 519 |
520 virtual void LogRecordedBuffer(Code* code, | 520 virtual void LogRecordedBuffer(Code* code, |
521 SharedFunctionInfo* shared, | 521 SharedFunctionInfo* shared, |
522 const char* name, | 522 const char* name, |
523 int length) = 0; | 523 int length) = 0; |
524 | 524 |
525 NameBuffer* name_buffer_; | 525 NameBuffer* name_buffer_; |
526 }; | 526 }; |
527 | 527 |
528 | 528 |
529 } } // namespace v8::internal | 529 } // namespace internal |
| 530 } // namespace v8 |
530 | 531 |
531 | 532 |
532 #endif // V8_LOG_H_ | 533 #endif // V8_LOG_H_ |
OLD | NEW |