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

Side by Side Diff: ui/events/events_stub.cc

Issue 785753002: Don't refcount tracking id -> slot id mapping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comment. 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/logging.h" 5 #include "base/logging.h"
6 #include "base/time/time.h" 6 #include "base/time/time.h"
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "ui/events/event_utils.h" 8 #include "ui/events/event_utils.h"
9 #include "ui/events/keycodes/dom3/dom_code.h" 9 #include "ui/events/keycodes/dom3/dom_code.h"
10 #include "ui/gfx/geometry/point.h" 10 #include "ui/gfx/geometry/point.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 base::NativeEvent CopyNativeEvent(const base::NativeEvent& event) { 64 base::NativeEvent CopyNativeEvent(const base::NativeEvent& event) {
65 NOTIMPLEMENTED() << 65 NOTIMPLEMENTED() <<
66 "Don't know how to copy base::NativeEvent for this platform"; 66 "Don't know how to copy base::NativeEvent for this platform";
67 return NULL; 67 return NULL;
68 } 68 }
69 69
70 void ReleaseCopiedNativeEvent(const base::NativeEvent& event) { 70 void ReleaseCopiedNativeEvent(const base::NativeEvent& event) {
71 } 71 }
72 72
73 void IncrementTouchIdRefCount(const base::NativeEvent& native_event) {
74 NOTIMPLEMENTED();
75 }
76
77 void ClearTouchIdIfReleased(const base::NativeEvent& native_event) { 73 void ClearTouchIdIfReleased(const base::NativeEvent& native_event) {
78 NOTIMPLEMENTED(); 74 NOTIMPLEMENTED();
79 } 75 }
80 76
81 int GetTouchId(const base::NativeEvent& native_event) { 77 int GetTouchId(const base::NativeEvent& native_event) {
82 NOTIMPLEMENTED(); 78 NOTIMPLEMENTED();
83 return 0; 79 return 0;
84 } 80 }
85 81
86 float GetTouchRadiusX(const base::NativeEvent& native_event) { 82 float GetTouchRadiusX(const base::NativeEvent& native_event) {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 return 0; 149 return 0;
154 } 150 }
155 151
156 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) { 152 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) {
157 NOTIMPLEMENTED(); 153 NOTIMPLEMENTED();
158 return 0; 154 return 0;
159 } 155 }
160 156
161 157
162 } // namespace ui 158 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698