Home | History | Annotate | Download | only in ash
      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 
     11 ShellInitParams::ShellInitParams()
     12     : delegate(NULL),
     13       context_factory(NULL)
     14 #if defined(OS_WIN)
     15       , remote_hwnd(NULL)
     16 #endif
     17       {}
     18 
     19 ShellInitParams::~ShellInitParams() {}
     20 
     21 }  // namespace ash
     22