| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <windowsx.h> | 5 #include <windowsx.h> |
| 6 | 6 |
| 7 #include "ui/base/events.h" | 7 #include "ui/base/events.h" |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "ui/base/keycodes/keyboard_code_conversion_win.h" | 10 #include "ui/base/keycodes/keyboard_code_conversion_win.h" |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 float* y_offset) { | 258 float* y_offset) { |
| 259 NOTIMPLEMENTED(); | 259 NOTIMPLEMENTED(); |
| 260 return false; | 260 return false; |
| 261 } | 261 } |
| 262 | 262 |
| 263 void UpdateDeviceList() { | 263 void UpdateDeviceList() { |
| 264 NOTIMPLEMENTED(); | 264 NOTIMPLEMENTED(); |
| 265 } | 265 } |
| 266 | 266 |
| 267 base::NativeEvent CreateNoopEvent() { | 267 base::NativeEvent CreateNoopEvent() { |
| 268 MSG event; | 268 MSG event = { NULL }; |
| 269 event.message = WM_USER; | 269 event.message = WM_USER; |
| 270 event.wParam = 0; | |
| 271 event.lParam = 0; | |
| 272 return event; | 270 return event; |
| 273 } | 271 } |
| 274 | 272 |
| 275 } // namespace ui | 273 } // namespace ui |
| OLD | NEW |