| 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 #include "chrome/test/base/tracing.h" | 5 #include "chrome/test/base/tracing.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 } | 50 } |
| 51 | 51 |
| 52 InProcessTraceController() | 52 InProcessTraceController() |
| 53 : is_waiting_on_watch_(false), | 53 : is_waiting_on_watch_(false), |
| 54 watch_notification_count_(0) {} | 54 watch_notification_count_(0) {} |
| 55 virtual ~InProcessTraceController() {} | 55 virtual ~InProcessTraceController() {} |
| 56 | 56 |
| 57 bool BeginTracing(const std::string& category_patterns) { | 57 bool BeginTracing(const std::string& category_patterns) { |
| 58 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 58 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 59 return content::TracingController::GetInstance()->EnableRecording( | 59 return content::TracingController::GetInstance()->EnableRecording( |
| 60 base::trace_event::CategoryFilter(category_patterns), | 60 base::trace_event::TraceConfig(category_patterns, ""), |
| 61 base::trace_event::TraceOptions(), | |
| 62 content::TracingController::EnableRecordingDoneCallback()); | 61 content::TracingController::EnableRecordingDoneCallback()); |
| 63 } | 62 } |
| 64 | 63 |
| 65 bool BeginTracingWithWatch(const std::string& category_patterns, | 64 bool BeginTracingWithWatch(const std::string& category_patterns, |
| 66 const std::string& category_name, | 65 const std::string& category_name, |
| 67 const std::string& event_name, | 66 const std::string& event_name, |
| 68 int num_occurrences) { | 67 int num_occurrences) { |
| 69 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 68 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 70 DCHECK(num_occurrences > 0); | 69 DCHECK(num_occurrences > 0); |
| 71 watch_notification_count_ = num_occurrences; | 70 watch_notification_count_ = num_occurrences; |
| 72 if (!content::TracingController::GetInstance()->SetWatchEvent( | 71 if (!content::TracingController::GetInstance()->SetWatchEvent( |
| 73 category_name, event_name, | 72 category_name, event_name, |
| 74 base::Bind(&InProcessTraceController::OnWatchEventMatched, | 73 base::Bind(&InProcessTraceController::OnWatchEventMatched, |
| 75 base::Unretained(this)))) { | 74 base::Unretained(this)))) { |
| 76 return false; | 75 return false; |
| 77 } | 76 } |
| 78 if (!content::TracingController::GetInstance()->EnableRecording( | 77 if (!content::TracingController::GetInstance()->EnableRecording( |
| 79 base::trace_event::CategoryFilter(category_patterns), | 78 base::trace_event::TraceConfig(category_patterns, ""), |
| 80 base::trace_event::TraceOptions(), | |
| 81 base::Bind(&InProcessTraceController::OnEnableTracingComplete, | 79 base::Bind(&InProcessTraceController::OnEnableTracingComplete, |
| 82 base::Unretained(this)))) { | 80 base::Unretained(this)))) { |
| 83 return false; | 81 return false; |
| 84 } | 82 } |
| 85 | 83 |
| 86 message_loop_runner_ = new content::MessageLoopRunner; | 84 message_loop_runner_ = new content::MessageLoopRunner; |
| 87 message_loop_runner_->Run(); | 85 message_loop_runner_->Run(); |
| 88 return true; | 86 return true; |
| 89 } | 87 } |
| 90 | 88 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 bool WaitForWatchEvent(base::TimeDelta timeout) { | 179 bool WaitForWatchEvent(base::TimeDelta timeout) { |
| 182 return InProcessTraceController::GetInstance()->WaitForWatchEvent(timeout); | 180 return InProcessTraceController::GetInstance()->WaitForWatchEvent(timeout); |
| 183 } | 181 } |
| 184 | 182 |
| 185 bool EndTracing(std::string* json_trace_output) { | 183 bool EndTracing(std::string* json_trace_output) { |
| 186 return InProcessTraceController::GetInstance()->EndTracing(json_trace_output); | 184 return InProcessTraceController::GetInstance()->EndTracing(json_trace_output); |
| 187 } | 185 } |
| 188 | 186 |
| 189 } // namespace tracing | 187 } // namespace tracing |
| 190 | 188 |
| OLD | NEW |