OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "ash/shell_init_params.h" | 5 #include "ash/shell_init_params.h" |
6 | 6 |
7 #include "ash/shell_delegate.h" | 7 #include "ash/shell_delegate.h" |
8 | 8 |
9 namespace ash { | 9 namespace ash { |
10 | 10 |
| 11 ShellInitParams::ShellInitParams() |
| 12 : delegate(NULL), |
| 13 context_factory(NULL) |
11 #if defined(OS_WIN) | 14 #if defined(OS_WIN) |
12 ShellInitParams::ShellInitParams() : delegate(NULL), remote_hwnd(NULL) {} | 15 , remote_hwnd(NULL) |
13 #else | |
14 ShellInitParams::ShellInitParams() : delegate(NULL) {} | |
15 #endif | 16 #endif |
| 17 {} |
16 | 18 |
17 ShellInitParams::~ShellInitParams() {} | 19 ShellInitParams::~ShellInitParams() {} |
18 | 20 |
19 } // namespace ash | 21 } // namespace ash |
OLD | NEW |