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

Unified Diff: chrome/common/nacl_types.cc

Issue 10392153: [Coverity] Uninit ctor (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix line ending Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/nacl_types.cc
diff --git a/chrome/common/nacl_types.cc b/chrome/common/nacl_types.cc
index 0ee4295ee176fe8eeaa36013018aac80954d5cc6..4df0a7cf1f91879c38aa8dc3e7f0b9cadf9508ec 100644
--- a/chrome/common/nacl_types.cc
+++ b/chrome/common/nacl_types.cc
@@ -1,15 +1,17 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/common/nacl_types.h"
-
-namespace nacl {
-
-NaClStartParams::NaClStartParams() : enable_exception_handling(false) {
-}
-
-NaClStartParams::~NaClStartParams() {
-}
-
-} // namespace nacl
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/common/nacl_types.h"
+
+namespace nacl {
+
+NaClStartParams::NaClStartParams()
+ : validation_cache_enabled(false),
+ enable_exception_handling(false) {
+}
+
+NaClStartParams::~NaClStartParams() {
+}
+
+} // namespace nacl
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698