summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorpkasting <pkasting@chromium.org>2015-04-10 19:35:54 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-11 02:36:21 +0000
commit2de43f09bfbd3e2b132e5f717bb9570d8b11eb19 (patch)
tree435b966e3e7183fb9b365196937fb96c74bd42a4 /content
parent26d09db19381c2236a2890c045761465c78bc958 (diff)
downloadchromium_src-2de43f09bfbd3e2b132e5f717bb9570d8b11eb19.zip
chromium_src-2de43f09bfbd3e2b132e5f717bb9570d8b11eb19.tar.gz
chromium_src-2de43f09bfbd3e2b132e5f717bb9570d8b11eb19.tar.bz2
More jankiness instrumentation updates.
BUG=457525,462788,476182 TEST=none TBR=piman,rogerta,rtenneti Review URL: https://codereview.chromium.org/1081613002 Cr-Commit-Position: refs/heads/master@{#324755}
Diffstat (limited to 'content')
-rw-r--r--content/browser/renderer_host/media/media_stream_manager.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/content/browser/renderer_host/media/media_stream_manager.cc b/content/browser/renderer_host/media/media_stream_manager.cc
index 63ef219..47d0877 100644
--- a/content/browser/renderer_host/media/media_stream_manager.cc
+++ b/content/browser/renderer_host/media/media_stream_manager.cc
@@ -1649,15 +1649,7 @@ void MediaStreamManager::InitializeDeviceManagersOnIOThread() {
// Use an STA Video Capture Thread to try to avoid crashes on enumeration of
// buggy third party Direct Show modules, http://crbug.com/428958.
video_capture_thread_.init_com_with_mta(false);
- {
- // TODO(pkasting): Remove ScopedTracker below once crbug.com/457525 is
- // fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "457525 "
- "MediaStreamManager::InitializeDeviceManagersOnIOThread -> Start"));
- CHECK(video_capture_thread_.Start());
- }
+ CHECK(video_capture_thread_.Start());
video_capture_manager_->Register(this,
video_capture_thread_.message_loop_proxy());
#else