OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium 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 CONTENT_RENDERER_MEMORY_BENCHMARKING_EXTENSION_H_ | 5 #ifndef CONTENT_RENDERER_MEMORY_BENCHMARKING_EXTENSION_H_ |
6 #define CONTENT_RENDERER_MEMORY_BENCHMARKING_EXTENSION_H_ | 6 #define CONTENT_RENDERER_MEMORY_BENCHMARKING_EXTENSION_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
9 #include "gin/wrappable.h" | 9 #include "gin/wrappable.h" |
10 | 10 |
11 namespace blink { | 11 namespace blink { |
12 class WebFrame; | 12 class WebFrame; |
13 } | 13 } |
14 | 14 |
15 namespace gin { | 15 namespace gin { |
16 class Arguments; | 16 class Arguments; |
17 } | 17 } |
18 | 18 |
(...skipping 17 matching lines...) Expand all Loading... |
36 bool IsHeapProfilerRunning(); | 36 bool IsHeapProfilerRunning(); |
37 | 37 |
38 void HeapProfilerDump(gin::Arguments* args); | 38 void HeapProfilerDump(gin::Arguments* args); |
39 | 39 |
40 DISALLOW_COPY_AND_ASSIGN(MemoryBenchmarkingExtension); | 40 DISALLOW_COPY_AND_ASSIGN(MemoryBenchmarkingExtension); |
41 }; | 41 }; |
42 | 42 |
43 } // namespace content | 43 } // namespace content |
44 | 44 |
45 #endif // CONTENT_RENDERER_MEMORY_BENCHMARKING_EXTENSION_H_ | 45 #endif // CONTENT_RENDERER_MEMORY_BENCHMARKING_EXTENSION_H_ |
OLD | NEW |