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

Unified Diff: content/browser/renderer_host/media/video_capture_device_client.cc

Issue 1057033002: Rename the trace filter name to be aligned with the class/method name. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename the TRACE filter name Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/media/webrtc_getusermedia_browsertest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/media/video_capture_device_client.cc
diff --git a/content/browser/renderer_host/media/video_capture_device_client.cc b/content/browser/renderer_host/media/video_capture_device_client.cc
index ae599a13564abfbf529571789da93b5b62584fea..66b4f616b097b65ed022d0461028b2faa1541997 100644
--- a/content/browser/renderer_host/media/video_capture_device_client.cc
+++ b/content/browser/renderer_host/media/video_capture_device_client.cc
@@ -62,7 +62,7 @@ void VideoCaptureDeviceClient::OnIncomingCapturedData(
const VideoCaptureFormat& frame_format,
int rotation,
const base::TimeTicks& timestamp) {
- TRACE_EVENT0("video", "VideoCaptureController::OnIncomingCapturedData");
+ TRACE_EVENT0("video", "VideoCaptureDeviceClient::OnIncomingCapturedData");
if (last_captured_pixel_format_ != frame_format.pixel_format) {
OnLog("Pixel format: " + media::VideoCaptureFormat::PixelFormatToString(
@@ -234,7 +234,7 @@ VideoCaptureDeviceClient::OnIncomingCapturedYuvData(
const VideoCaptureFormat& frame_format,
int clockwise_rotation,
const base::TimeTicks& timestamp) {
- TRACE_EVENT0("video", "VideoCaptureController::OnIncomingCapturedYuvData");
+ TRACE_EVENT0("video", "VideoCaptureDeviceClient::OnIncomingCapturedYuvData");
DCHECK_EQ(frame_format.pixel_format, media::PIXEL_FORMAT_I420);
DCHECK_EQ(clockwise_rotation, 0) << "Rotation not supported";
« no previous file with comments | « content/browser/media/webrtc_getusermedia_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698