Chromium Code Reviews| Index: content/public/app/content_main.h |
| diff --git a/content/public/app/content_main.h b/content/public/app/content_main.h |
| index 201fca72112eb28b304f556c86fdc0fbd2978f2c..d797ae8c2b69a617047a9ddf97ced71b24dcb1f0 100644 |
| --- a/content/public/app/content_main.h |
| +++ b/content/public/app/content_main.h |
| @@ -25,6 +25,7 @@ class ContentMainDelegate; |
| struct ContentMainParams { |
| explicit ContentMainParams(ContentMainDelegate* delegate) |
| : delegate(delegate), |
| + disable_termination_on_heap_corruption(false), |
|
brettw
2014/07/17 20:15:04
I find this kind of thing much easier to follow if
|
| #if defined(OS_WIN) |
| instance(NULL), |
| sandbox_info(NULL), |
| @@ -37,6 +38,8 @@ struct ContentMainParams { |
| ContentMainDelegate* delegate; |
| + bool disable_termination_on_heap_corruption; |
| + |
| #if defined(OS_WIN) |
| HINSTANCE instance; |