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

Side by Side Diff: ui/base/win/events_win.cc

Issue 9006028: Coverity fixes for uninitialized vars (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing braces Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/ppb_var_deprecated_proxy.cc ('k') | no next file » | 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) 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
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
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_var_deprecated_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698