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

Unified Diff: media/base/user_input_monitor_win.cc

Issue 877993003: Pass FROM_HERE to ObserverListThreadSafe::Notify to improve profile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « media/base/user_input_monitor_linux.cc ('k') | net/android/network_change_notifier_delegate_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/user_input_monitor_win.cc
diff --git a/media/base/user_input_monitor_win.cc b/media/base/user_input_monitor_win.cc
index 6ac3ad8c602561ca6bec68ef98508b72af54c59a..d06b82435a337e42f3daf49bcb7a4af7d60d8ddc 100644
--- a/media/base/user_input_monitor_win.cc
+++ b/media/base/user_input_monitor_win.cc
@@ -205,7 +205,7 @@ LRESULT UserInputMonitorWinCore::OnInput(HRAWINPUT input_handle) {
position.y = 0;
}
mouse_listeners_->Notify(
- &UserInputMonitor::MouseEventListener::OnMouseMoved,
+ FROM_HERE, &UserInputMonitor::MouseEventListener::OnMouseMoved,
SkIPoint::Make(position.x, position.y));
} else if (input->header.dwType == RIM_TYPEKEYBOARD &&
input->header.hDevice != NULL) {
« no previous file with comments | « media/base/user_input_monitor_linux.cc ('k') | net/android/network_change_notifier_delegate_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698