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_DEVTOOLS_DEVTOOLS_TRACING_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_TRACING_HANDLER_H_ |
6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_TRACING_HANDLER_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_TRACING_HANDLER_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "content/browser/devtools/devtools_protocol.h" | 9 #include "content/browser/devtools/devtools_protocol.h" |
10 #include "content/public/browser/tracing_controller.h" | 10 #include "content/public/browser/tracing_controller.h" |
11 | 11 |
12 namespace base { | 12 namespace base { |
13 class RefCountedString; | 13 class RefCountedString; |
14 class Timer; | 14 class Timer; |
15 } | 15 } |
16 | 16 |
17 namespace content { | 17 namespace content { |
18 | 18 |
19 // This class bridges DevTools remote debugging server with the trace | 19 // This class bridges DevTools remote debugging server with the trace |
20 // infrastructure. | 20 // infrastructure. |
21 class DevToolsTracingHandler : public DevToolsProtocol::Handler { | 21 class DevToolsTracingHandler : public DevToolsProtocol::Handler { |
22 public: | 22 public: |
23 DevToolsTracingHandler(); | 23 enum Target { Browser, Renderer }; |
| 24 explicit DevToolsTracingHandler(Target target); |
24 virtual ~DevToolsTracingHandler(); | 25 virtual ~DevToolsTracingHandler(); |
25 | 26 |
26 private: | 27 private: |
27 void BeginReadingRecordingResult(const base::FilePath& path); | 28 void BeginReadingRecordingResult(const base::FilePath& path); |
28 void ReadRecordingResult(const scoped_refptr<base::RefCountedString>& result); | 29 void ReadRecordingResult(const scoped_refptr<base::RefCountedString>& result); |
29 void OnTraceDataCollected(const std::string& trace_fragment); | 30 void OnTraceDataCollected(const std::string& trace_fragment); |
30 void OnTracingStarted(scoped_refptr<DevToolsProtocol::Command> command); | 31 void OnTracingStarted(scoped_refptr<DevToolsProtocol::Command> command); |
31 void OnBufferUsage(float usage); | 32 void OnBufferUsage(float usage); |
32 | 33 |
33 scoped_refptr<DevToolsProtocol::Response> OnStart( | 34 scoped_refptr<DevToolsProtocol::Response> OnStart( |
34 scoped_refptr<DevToolsProtocol::Command> command); | 35 scoped_refptr<DevToolsProtocol::Command> command); |
35 scoped_refptr<DevToolsProtocol::Response> OnEnd( | 36 scoped_refptr<DevToolsProtocol::Response> OnEnd( |
36 scoped_refptr<DevToolsProtocol::Command> command); | 37 scoped_refptr<DevToolsProtocol::Command> command); |
37 | 38 |
38 TracingController::Options TraceOptionsFromString(const std::string& options); | 39 TracingController::Options TraceOptionsFromString(const std::string& options); |
39 | 40 |
40 base::WeakPtrFactory<DevToolsTracingHandler> weak_factory_; | 41 base::WeakPtrFactory<DevToolsTracingHandler> weak_factory_; |
41 scoped_ptr<base::Timer> buffer_usage_poll_timer_; | 42 scoped_ptr<base::Timer> buffer_usage_poll_timer_; |
| 43 Target target_; |
42 DISALLOW_COPY_AND_ASSIGN(DevToolsTracingHandler); | 44 DISALLOW_COPY_AND_ASSIGN(DevToolsTracingHandler); |
43 }; | 45 }; |
44 | 46 |
45 } // namespace content | 47 } // namespace content |
46 | 48 |
47 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_TRACING_HANDLER_H_ | 49 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_TRACING_HANDLER_H_ |
OLD | NEW |