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

Unified Diff: content/public/common/show_desktop_notification_params.cc

Issue 9006028: Coverity fixes for uninitialized vars (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing braces 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 | « content/plugin/plugin_main_linux.cc ('k') | gpu/command_buffer/service/command_buffer_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/show_desktop_notification_params.cc
diff --git a/content/public/common/show_desktop_notification_params.cc b/content/public/common/show_desktop_notification_params.cc
index e93f7cc5dccdd57295e288e441ddfd57656b8533..b7e35a6624d5e614442799bfecb3973b1ff6d10a 100644
--- a/content/public/common/show_desktop_notification_params.cc
+++ b/content/public/common/show_desktop_notification_params.cc
@@ -7,7 +7,8 @@
namespace content {
ShowDesktopNotificationHostMsgParams::ShowDesktopNotificationHostMsgParams()
- : is_html(false), notification_id(0) {
+ : is_html(false), direction(WebKit::WebTextDirectionDefault),
+ notification_id(0) {
}
ShowDesktopNotificationHostMsgParams::~ShowDesktopNotificationHostMsgParams() {
« no previous file with comments | « content/plugin/plugin_main_linux.cc ('k') | gpu/command_buffer/service/command_buffer_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698