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

Unified Diff: ppapi/proxy/ppp_mouse_lock_proxy.cc

Issue 8965054: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 9 years 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
« no previous file with comments | « media/video/capture/win/video_capture_device_win.cc ('k') | remoting/base/decoder_row_based.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppp_mouse_lock_proxy.cc
diff --git a/ppapi/proxy/ppp_mouse_lock_proxy.cc b/ppapi/proxy/ppp_mouse_lock_proxy.cc
index 91b7fb16024d137819a2e66bb7255e0184f6d74e..37ca35b312fbe25a4fe3d0cb105b66114167d4a4 100644
--- a/ppapi/proxy/ppp_mouse_lock_proxy.cc
+++ b/ppapi/proxy/ppp_mouse_lock_proxy.cc
@@ -36,7 +36,8 @@ InterfaceProxy* CreateMouseLockProxy(Dispatcher* dispatcher) {
} // namespace
PPP_MouseLock_Proxy::PPP_MouseLock_Proxy(Dispatcher* dispatcher)
- : InterfaceProxy(dispatcher) {
+ : InterfaceProxy(dispatcher),
+ ppp_mouse_lock_impl_(NULL) {
if (dispatcher->IsPlugin()) {
ppp_mouse_lock_impl_ = static_cast<const PPP_MouseLock*>(
dispatcher->local_get_interface()(PPP_MOUSELOCK_INTERFACE));
« no previous file with comments | « media/video/capture/win/video_capture_device_win.cc ('k') | remoting/base/decoder_row_based.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698