Upstream version 9.37.193.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / browser / ui / native_app_window.cc
1 // Copyright (c) 2013 Intel Corporation. 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 "xwalk/runtime/browser/ui/native_app_window.h"
6
7 namespace xwalk {
8
9 NativeAppWindow::CreateParams::CreateParams()
10   : delegate(NULL),
11     web_contents(NULL),
12     state(ui::SHOW_STATE_NORMAL),
13     resizable(true),
14     net_wm_pid(0),
15     parent(NULL) {
16 }
17
18 NativeAppWindow::CreateParams::~CreateParams() {
19 }
20
21 }  // namespace xwalk
22