Implemented progressbar for web application
[platform/framework/web/crosswalk-tizen.git] / runtime / browser / native_window.h
index 7d23aa0..a44acd7 100755 (executable)
@@ -65,6 +65,10 @@ class NativeWindow {
   void EnableManualRotation(bool enable);
   void ManualRotationDone();
 #endif  // MANUAL_ROTATE_FEATURE_SUPPORT
+#ifdef PROFILE_MOBILE
+  void SignalEmit(const char* emission, const char* source);
+  void UpdateProgress(double value);
+#endif
 
  protected:
   virtual Evas_Object* CreateWindowInternal() = 0;
@@ -82,6 +86,10 @@ class NativeWindow {
   bool currentViewModeFullScreen_;
   Evas_Object* focus_;
   Evas_Object* content_;
+#ifdef PROFILE_MOBILE
+  Evas_Object* progressbar_;
+  Evas_Object* top_layout_;
+#endif
   int rotation_;
   int handler_id_;
   ScreenOrientation natural_orientation_;