Upstream version 11.39.250.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / core_internal / src / org / xwalk / core / internal / XWalkViewInternal.java
index e686621..a8842f9 100644 (file)
@@ -37,6 +37,7 @@ import org.chromium.base.ActivityState;
 import org.chromium.base.ApplicationStatus;
 import org.chromium.base.ApplicationStatus.ActivityStateListener;
 import org.chromium.base.CommandLine;
+import org.chromium.content.browser.ContentViewCore;
 import org.xwalk.core.internal.extension.BuiltinXWalkExtensions;
 
 /**
@@ -1087,4 +1088,9 @@ public class XWalkViewInternal extends android.widget.FrameLayout {
         );
         return imageFile;
     }
+
+    // For instrumentation test.
+    public ContentViewCore getXWalkContentForTest() {
+        return mContent.getContentViewCoreForTest();
+    }
 }