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

Unified Diff: chrome/android/java_staging/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java

Issue 1157433002: Make it possible to load a new Url in hosted mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed call and added security state to http scheme emphasis logic Created 5 years, 7 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 | « no previous file | chrome/android/java_staging/src/org/chromium/chrome/browser/hosted/HostedActivity.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java_staging/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java
diff --git a/chrome/android/java_staging/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java b/chrome/android/java_staging/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java
index 85573060eca7a0270af963c3b43ced69037e7d23..66f928112196161d7e6b101e62a86ed266f00e9b 100644
--- a/chrome/android/java_staging/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java
+++ b/chrome/android/java_staging/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java
@@ -266,6 +266,9 @@ public class ChromeLauncherActivity extends Activity
String url = IntentHandler.getUrlFromIntent(getIntent());
if (url == null) return false;
+ boolean handled = HostedActivity.handleInActiveContentIfNeeded(getIntent());
+ if (handled) return true;
+
// Create and fire a launch intent. Use the copy constructor to carry over the myriad of
// extras.
Intent newIntent = new Intent(getIntent());
« no previous file with comments | « no previous file | chrome/android/java_staging/src/org/chromium/chrome/browser/hosted/HostedActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698