summaryrefslogtreecommitdiffstats
path: root/device
diff options
context:
space:
mode:
authorpkasting <pkasting@chromium.org>2015-02-27 20:48:25 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-28 04:49:17 +0000
commitcdf6fe7b23444014b70b5fa97d7cb5222d64a20a (patch)
tree6415cd6dc10895bb18d753d5d37eee133bc3e7df /device
parent6ccace4dafa0b74c6933d14caea548a2cbfd3244 (diff)
downloadchromium_src-cdf6fe7b23444014b70b5fa97d7cb5222d64a20a.zip
chromium_src-cdf6fe7b23444014b70b5fa97d7cb5222d64a20a.tar.gz
chromium_src-cdf6fe7b23444014b70b5fa97d7cb5222d64a20a.tar.bz2
Split bug 418183 into separate bugs for each janky piece and remove the
remaining instrumentation of non-janky functions. BUG=418183,462774,462778,462780,462784,462788,462789 TEST=none TBR=rvargas,jochen,rpaquay,zea Review URL: https://codereview.chromium.org/970463002 Cr-Commit-Position: refs/heads/master@{#318597}
Diffstat (limited to 'device')
-rw-r--r--device/hid/hid_connection_win.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/device/hid/hid_connection_win.cc b/device/hid/hid_connection_win.cc
index 87845eb..47571c7 100644
--- a/device/hid/hid_connection_win.cc
+++ b/device/hid/hid_connection_win.cc
@@ -10,7 +10,6 @@
#include "base/files/file.h"
#include "base/message_loop/message_loop.h"
#include "base/numerics/safe_conversions.h"
-#include "base/profiler/scoped_tracker.h"
#include "base/win/object_watcher.h"
#include "components/device_event_log/device_event_log.h"
@@ -90,11 +89,6 @@ void PendingHidTransfer::TakeResultFromWindowsAPI(BOOL result) {
}
void PendingHidTransfer::OnObjectSignaled(HANDLE event_handle) {
- // TODO(vadimt): Remove ScopedTracker below once crbug.com/418183 is fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "418183 PendingHidTransfer::OnObjectSignaled"));
-
callback_.Run(this, true);
Release();
}