Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / runtime_shell / src / org / xwalk / runtime / shell / XWalkRuntimeShellActivity.java
index e9ce7c2..6c039f3 100644 (file)
@@ -54,6 +54,12 @@ public class XWalkRuntimeShellActivity extends Activity {
     }
 
     @Override
+    protected void onStart() {
+        super.onStart();
+        mRuntimeView.onStart();
+    }
+
+    @Override
     protected void onPause() {
         super.onPause();
         mRuntimeView.onPause();
@@ -66,6 +72,12 @@ public class XWalkRuntimeShellActivity extends Activity {
     }
 
     @Override
+    protected void onStop() {
+        super.onStop();
+        mRuntimeView.onStop();
+    }
+
+    @Override
     protected void onDestroy() {
         super.onDestroy();
         mRuntimeView.onDestroy();