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

Side by Side Diff: ppapi/proxy/serialized_structs.cc

Issue 9005015: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. 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 unified diff | Download patch | Annotate | Revision Log
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 "ppapi/proxy/serialized_structs.h" 5 #include "ppapi/proxy/serialized_structs.h"
6 6
7 #include "ppapi/c/dev/ppb_font_dev.h" 7 #include "ppapi/c/dev/ppb_font_dev.h"
8 #include "ppapi/c/pp_file_info.h" 8 #include "ppapi/c/pp_file_info.h"
9 #include "ppapi/c/pp_rect.h" 9 #include "ppapi/c/pp_rect.h"
10 10
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 PPBFlash_DrawGlyphs_Params::PPBFlash_DrawGlyphs_Params() 66 PPBFlash_DrawGlyphs_Params::PPBFlash_DrawGlyphs_Params()
67 : instance(0), 67 : instance(0),
68 font_desc(), 68 font_desc(),
69 color(0) { 69 color(0) {
70 clip.point.x = 0; 70 clip.point.x = 0;
71 clip.point.y = 0; 71 clip.point.y = 0;
72 clip.size.height = 0; 72 clip.size.height = 0;
73 clip.size.width = 0; 73 clip.size.width = 0;
74 position.x = 0; 74 position.x = 0;
75 position.y = 0; 75 position.y = 0;
76 allow_subpixel_aa = PP_FALSE;
76 } 77 }
77 78
78 PPBFlash_DrawGlyphs_Params::~PPBFlash_DrawGlyphs_Params() {} 79 PPBFlash_DrawGlyphs_Params::~PPBFlash_DrawGlyphs_Params() {}
79 80
80 } // namespace proxy 81 } // namespace proxy
81 } // namespace ppapi 82 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.h ('k') | ppapi/shared_impl/ppb_file_io_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698