0fa2395b3ae6b0ea6a27e7e53c323a515de87e07
[platform/framework/web/crosswalk-tizen.git] / src / runtime / native_app_window.h
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 #ifndef WRT_RUNTIME_NATIVE_APP_WINDOW_H_
6 #define WRT_RUNTIME_NATIVE_APP_WINDOW_H_
7
8 #include "runtime/native_window.h"
9
10 namespace wrt {
11
12 class NativeAppWindow: public NativeWindow {
13  public:
14   NativeAppWindow();
15   virtual ~NativeAppWindow();
16  protected:
17   Evas_Object* CreateWindowInternal();  // override
18 };
19
20 }  // namespace wrt
21
22 #endif  // WRT_RUNTIME_NATIVE_APP_WINDOW_H_