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

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

Issue 954893002: Add support for VIEW intents to 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') | sky/shell/ui/engine.h » ('j') | 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 a4f2412c264faa513f483c196d1aaffa1b427ad6..e15982a41931bfd6a6b2ce4591eabc292b166535 100644
--- a/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
+++ b/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
@@ -5,6 +5,8 @@
package org.domokit.sky.shell;
import android.app.Activity;
+import android.content.Intent;
+import android.net.Uri;
import android.os.Bundle;
/**
@@ -18,7 +20,17 @@ public class SkyShellActivity extends Activity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ String url = "https://domokit.github.io/home";
+ Intent intent = getIntent();
+ if (Intent.ACTION_VIEW.equals(intent.getAction())) {
+ Uri skyUri = intent.getData();
+ Uri httpsUri = skyUri.buildUpon().scheme("https").build();
+ url = httpsUri.toString();
+ }
+
SkyMain.ensureInitialized(getApplicationContext());
- setContentView(new PlatformView(this));
+ PlatformView view = new PlatformView(this);
+ setContentView(view);
+ view.loadUrl(url);
}
}
« no previous file with comments | « sky/shell/apk/src/org/domokit/sky/shell/PlatformView.java ('k') | sky/shell/ui/engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698