Chromium Code Reviews| 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 #include "net/base/tcp_listen_socket.h" | |
|
Mark Seaborn
2012/09/10 15:39:45
You don't need to add this, do you?
halyavin
2012/09/11 11:16:12
Done.
| |
| 6 | 7 |
| 7 namespace nacl { | 8 namespace nacl { |
| 8 | 9 |
| 9 NaClStartParams::NaClStartParams() | 10 NaClStartParams::NaClStartParams() |
| 10 : validation_cache_enabled(false), | 11 : validation_cache_enabled(false), |
| 11 enable_exception_handling(false) { | 12 enable_exception_handling(false) { |
| 13 | |
|
Mark Seaborn
2012/09/10 15:39:45
Nit: don't add an empty line here
halyavin
2012/09/11 11:16:12
Done.
| |
| 12 } | 14 } |
| 13 | 15 |
| 14 NaClStartParams::~NaClStartParams() { | 16 NaClStartParams::~NaClStartParams() { |
| 15 } | 17 } |
| 16 | 18 |
| 17 } // namespace nacl | 19 } // namespace nacl |
| OLD | NEW |