| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/common/nacl_types.h" | 5 #include "chrome/common/nacl_types.h" |
| 6 | 6 |
| 7 namespace nacl { | 7 namespace nacl { |
| 8 | 8 |
| 9 NaClStartParams::NaClStartParams() | 9 NaClStartParams::NaClStartParams() |
| 10 : validation_cache_enabled(false), | 10 : validation_cache_enabled(false), |
| 11 enable_exception_handling(false) { | 11 enable_exception_handling(false), |
| 12 enable_debug_stub(false), |
| 13 enable_ipc_proxy(false), |
| 14 uses_irt(false) { |
| 12 } | 15 } |
| 13 | 16 |
| 14 NaClStartParams::~NaClStartParams() { | 17 NaClStartParams::~NaClStartParams() { |
| 15 } | 18 } |
| 16 | 19 |
| 17 } // namespace nacl | 20 } // namespace nacl |
| OLD | NEW |