Upstream version 8.36.156.0
[platform/framework/web/crosswalk.git] / src / xwalk / application / browser / application_tizen.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 #ifndef XWALK_APPLICATION_BROWSER_APPLICATION_TIZEN_H_
5 #define XWALK_APPLICATION_BROWSER_APPLICATION_TIZEN_H_
6
7 #include "base/event_types.h"
8 #include "xwalk/application/browser/application.h"
9
10 #if defined(USE_OZONE)
11 #include "ui/events/platform/platform_event_observer.h"
12 #include "ui/events/platform/platform_event_types.h"
13 #endif
14
15 namespace xwalk {
16 namespace application {
17
18 class ApplicationTizen :  // NOLINT
19 #if defined(USE_OZONE)
20   public ui::PlatformEventObserver,
21 #endif
22   public Application {
23  public:
24   virtual ~ApplicationTizen();
25   void Hide();
26
27  private:
28   // We enforce ApplicationService ownership.
29   friend class ApplicationService;
30   ApplicationTizen(scoped_refptr<ApplicationData> data,
31                    RuntimeContext* context,
32                    Application::Observer* observer);
33   virtual bool Launch(const LaunchParams& launch_params) OVERRIDE;
34
35 #if defined(USE_OZONE)
36   virtual void WillProcessEvent(const ui::PlatformEvent& event) OVERRIDE;
37   virtual void DidProcessEvent(const ui::PlatformEvent& event) OVERRIDE;
38 #endif
39 };
40
41 inline ApplicationTizen* ToApplicationTizen(Application* app) {
42   return static_cast<ApplicationTizen*>(app);
43 }
44
45 }  // namespace application
46 }  // namespace xwalk
47
48 #endif  // XWALK_APPLICATION_BROWSER_APPLICATION_TIZEN_H_