Upstream version 11.39.244.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / browser / runtime_ui_strategy.h
1 // Copyright (c) 2014 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 #ifndef XWALK_RUNTIME_BROWSER_RUNTIME_UI_STRATEGY_H_
6 #define XWALK_RUNTIME_BROWSER_RUNTIME_UI_STRATEGY_H_
7
8 #include "xwalk/runtime/browser/ui/native_app_window.h"
9
10 namespace xwalk {
11 class Runtime;
12
13 class RuntimeUIStrategy {
14  public:
15   RuntimeUIStrategy();
16   virtual ~RuntimeUIStrategy();
17   virtual void Show(Runtime* runtime,
18                     const NativeAppWindow::CreateParams& params);
19 };
20
21 }  // namespace xwalk
22
23 #endif  // XWALK_RUNTIME_BROWSER_RUNTIME_UI_STRATEGY_H_