You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ia...@apache.org on 2014/04/30 21:53:07 UTC

[09/12] w00t! Managed to get XWalk to work. Next Step: Make it installable like a Cordova Plugin!

http://git-wip-us.apache.org/repos/asf/cordova-android/blob/c17503ab/framework/src/org/xwalk/runtime/extension/CordovaXWalkCoreExtensionBridge.java
----------------------------------------------------------------------
diff --git a/framework/src/org/xwalk/runtime/extension/CordovaXWalkCoreExtensionBridge.java b/framework/src/org/xwalk/runtime/extension/CordovaXWalkCoreExtensionBridge.java
new file mode 100644
index 0000000..e80ea51
--- /dev/null
+++ b/framework/src/org/xwalk/runtime/extension/CordovaXWalkCoreExtensionBridge.java
@@ -0,0 +1,17 @@
+// Copyright (c) 2013 Intel Corporation. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.xwalk.runtime.extension;
+
+import org.xwalk.runtime.extension.XWalkExtension;
+
+/**
+ * This class is a public wrapper for XWalkCoreExtensionBridge.
+ */
+public class CordovaXWalkCoreExtensionBridge extends XWalkCoreExtensionBridge {
+
+    public CordovaXWalkCoreExtensionBridge(XWalkExtension extension) {
+        super(extension);
+    }
+}