| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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_V8_PROFILER_H_ | 5 #ifndef V8_V8_PROFILER_H_ |
| 6 #define V8_V8_PROFILER_H_ | 6 #define V8_V8_PROFILER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 #include "v8.h" | 9 #include "v8.h" // NOLINT(build/include) |
| 10 | 10 |
| 11 /** | 11 /** |
| 12 * Profiler support for the V8 JavaScript engine. | 12 * Profiler support for the V8 JavaScript engine. |
| 13 */ | 13 */ |
| 14 namespace v8 { | 14 namespace v8 { |
| 15 | 15 |
| 16 class HeapGraphNode; | 16 class HeapGraphNode; |
| 17 struct HeapStatsUpdate; | 17 struct HeapStatsUpdate; |
| 18 | 18 |
| 19 typedef uint32_t SnapshotObjectId; | 19 typedef uint32_t SnapshotObjectId; |
| (...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 uint32_t index; // Index of the time interval that was changed. | 639 uint32_t index; // Index of the time interval that was changed. |
| 640 uint32_t count; // New value of count field for the interval with this index. | 640 uint32_t count; // New value of count field for the interval with this index. |
| 641 uint32_t size; // New value of size field for the interval with this index. | 641 uint32_t size; // New value of size field for the interval with this index. |
| 642 }; | 642 }; |
| 643 | 643 |
| 644 | 644 |
| 645 } // namespace v8 | 645 } // namespace v8 |
| 646 | 646 |
| 647 | 647 |
| 648 #endif // V8_V8_PROFILER_H_ | 648 #endif // V8_V8_PROFILER_H_ |
| OLD | NEW |