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

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

Issue 869433007: Revert of Don't refcount tracking id -> slot id mapping. (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 unified diff | Download patch
« no previous file with comments | « ui/events/event_utils.h ('k') | ui/events/ozone/events_ozone.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
73 void ClearTouchIdIfReleased(const base::NativeEvent& native_event) { 77 void ClearTouchIdIfReleased(const base::NativeEvent& native_event) {
74 NOTIMPLEMENTED(); 78 NOTIMPLEMENTED();
75 } 79 }
76 80
77 int GetTouchId(const base::NativeEvent& native_event) { 81 int GetTouchId(const base::NativeEvent& native_event) {
78 NOTIMPLEMENTED(); 82 NOTIMPLEMENTED();
79 return 0; 83 return 0;
80 } 84 }
81 85
82 float GetTouchRadiusX(const base::NativeEvent& native_event) { 86 float GetTouchRadiusX(const base::NativeEvent& native_event) {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 return 0; 153 return 0;
150 } 154 }
151 155
152 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) { 156 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) {
153 NOTIMPLEMENTED(); 157 NOTIMPLEMENTED();
154 return 0; 158 return 0;
155 } 159 }
156 160
157 161
158 } // namespace ui 162 } // namespace ui
OLDNEW
« no previous file with comments | « ui/events/event_utils.h ('k') | ui/events/ozone/events_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698