Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: include/v8-profiler.h

Issue 201573002: Fix compile error after r19955 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 18 matching lines...) Expand all
29 #define V8_V8_PROFILER_H_ 29 #define V8_V8_PROFILER_H_
30 30
31 #include "v8.h" 31 #include "v8.h"
32 32
33 /** 33 /**
34 * Profiler support for the V8 JavaScript engine. 34 * Profiler support for the V8 JavaScript engine.
35 */ 35 */
36 namespace v8 { 36 namespace v8 {
37 37
38 class HeapGraphNode; 38 class HeapGraphNode;
39 class HeapStatsUpdate; 39 struct HeapStatsUpdate;
40 40
41 typedef uint32_t SnapshotObjectId; 41 typedef uint32_t SnapshotObjectId;
42 42
43 /** 43 /**
44 * CpuProfileNode represents a node in a call graph. 44 * CpuProfileNode represents a node in a call graph.
45 */ 45 */
46 class V8_EXPORT CpuProfileNode { 46 class V8_EXPORT CpuProfileNode {
47 public: 47 public:
48 /** Returns function name (empty string for anonymous functions.) */ 48 /** Returns function name (empty string for anonymous functions.) */
49 Handle<String> GetFunctionName() const; 49 Handle<String> GetFunctionName() const;
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 uint32_t index; // Index of the time interval that was changed. 613 uint32_t index; // Index of the time interval that was changed.
614 uint32_t count; // New value of count field for the interval with this index. 614 uint32_t count; // New value of count field for the interval with this index.
615 uint32_t size; // New value of size field for the interval with this index. 615 uint32_t size; // New value of size field for the interval with this index.
616 }; 616 };
617 617
618 618
619 } // namespace v8 619 } // namespace v8
620 620
621 621
622 #endif // V8_V8_PROFILER_H_ 622 #endif // V8_V8_PROFILER_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698