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

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

Issue 1318863004: [presubmit] Fix build/include linter violations. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « include/v8-debug.h ('k') | include/v8-testing.h » ('j') | 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 // 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
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_
OLDNEW
« no previous file with comments | « include/v8-debug.h ('k') | include/v8-testing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698