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

Unified Diff: ui/events/win/events_win.cc

Issue 400213002: Refcount touch tracking ids to prevent freeing them too early. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix non-linux platforms. Created 6 years, 5 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
Index: ui/events/win/events_win.cc
diff --git a/ui/events/win/events_win.cc b/ui/events/win/events_win.cc
index 9e74d3a4556ff62f17b7ef03d7ec051613d6bbd2..459e42aae8746751a9a12a1de0643d1aaf844f53 100644
--- a/ui/events/win/events_win.cc
+++ b/ui/events/win/events_win.cc
@@ -290,6 +290,10 @@ base::NativeEvent CopyNativeEvent(const base::NativeEvent& event) {
void ReleaseCopiedNativeEvent(const base::NativeEvent& event) {
}
+void IncrementTouchIdRefCount(const base::NativeEvent& event) {
+ NOTIMPLEMENTED();
+}
+
void ClearTouchIdIfReleased(const base::NativeEvent& xev) {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698