OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_PROFILER_CONTROLLER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_ |
6 #define CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_ | 6 #define CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_ |
7 | 7 |
8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
9 #include "base/process.h" | 9 #include "base/process/process.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 #include "content/public/browser/profiler_controller.h" | 11 #include "content/public/browser/profiler_controller.h" |
12 #include "content/public/common/process_type.h" | 12 #include "content/public/common/process_type.h" |
13 | 13 |
14 namespace tracked_objects { | 14 namespace tracked_objects { |
15 struct ProcessDataSnapshot; | 15 struct ProcessDataSnapshot; |
16 } | 16 } |
17 | 17 |
18 namespace content { | 18 namespace content { |
19 | 19 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 void GetProfilerDataFromChildProcesses(int sequence_number); | 53 void GetProfilerDataFromChildProcesses(int sequence_number); |
54 | 54 |
55 ProfilerSubscriber* subscriber_; | 55 ProfilerSubscriber* subscriber_; |
56 | 56 |
57 DISALLOW_COPY_AND_ASSIGN(ProfilerControllerImpl); | 57 DISALLOW_COPY_AND_ASSIGN(ProfilerControllerImpl); |
58 }; | 58 }; |
59 | 59 |
60 } // namespace content | 60 } // namespace content |
61 | 61 |
62 #endif // CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_ | 62 #endif // CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_ |
OLD | NEW |