Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(735)

Unified Diff: sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java

Issue 961483004: Fix multi-touch to work in SkyShell. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/shell/apk/src/org/domokit/sky/shell/PlatformView.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
diff --git a/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java b/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
index e15982a41931bfd6a6b2ce4591eabc292b166535..43ac7c83daa89c8376b5c17ddaba9aecd7d42c3f 100644
--- a/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
+++ b/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
@@ -24,7 +24,9 @@ public class SkyShellActivity extends Activity {
Intent intent = getIntent();
if (Intent.ACTION_VIEW.equals(intent.getAction())) {
Uri skyUri = intent.getData();
- Uri httpsUri = skyUri.buildUpon().scheme("https").build();
+ // TODO(eseidel): This should use https, but that makes localhost
+ // testing very hard.
+ Uri httpsUri = skyUri.buildUpon().scheme("http").build();
url = httpsUri.toString();
}
« no previous file with comments | « sky/shell/apk/src/org/domokit/sky/shell/PlatformView.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698