f7f87aaa786ebb0b6d58d5a65c2b2ca4c2534906
[platform/framework/web/crosswalk.git] / src / xwalk / tizen / appcore_context.h
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 #ifndef XWALK_TIZEN_APPCORE_CONTEXT_H_
6 #define XWALK_TIZEN_APPCORE_CONTEXT_H_
7
8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
10
11 namespace tizen {
12
13 // AppcoreContext makes Tizen task switcher be able to control xwalk.
14 class AppcoreContext {
15  public:
16   static scoped_ptr<AppcoreContext> Create();
17   virtual ~AppcoreContext() {}
18 };
19
20 }  // namespace tizen
21
22 #endif  // XWALK_TIZEN_APPCORE_CONTEXT_H_