• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 // found in the LICENSE file.
4 
5 #include "ash/shell_init_params.h"
6 
7 #include "ash/shell_delegate.h"
8 
9 namespace ash {
10 
ShellInitParams()11 ShellInitParams::ShellInitParams()
12     : delegate(NULL),
13       context_factory(NULL)
14 #if defined(OS_WIN)
15       , remote_hwnd(NULL)
16 #endif
17       {}
18 
~ShellInitParams()19 ShellInitParams::~ShellInitParams() {}
20 
21 }  // namespace ash
22