943dcafbbfa5b0aba68ed98a3c62d1455a232a2a
[platform/framework/web/crosswalk-tizen.git] / src / runtime / native_app_window.cc
1 // Copyright 2015 Samsung Electronics Co, Ltd. 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 "runtime/native_app_window.h"
6
7 #include <Elementary.h>
8
9 namespace wrt {
10
11 NativeAppWindow::NativeAppWindow() {
12 }
13
14 NativeAppWindow::~NativeAppWindow() {
15 }
16
17 Evas_Object* NativeAppWindow::CreateWindowInternal() {
18   elm_config_accel_preference_set("opengl");
19   return elm_win_add(NULL, "wrt-widget", ELM_WIN_BASIC);
20 }
21
22
23 }  // namespace wrt